login time

This commit is contained in:
Sone
2025-11-05 20:11:59 +01:00
parent deb622b796
commit af4d079181
12 changed files with 1904 additions and 273 deletions
+4 -4
View File
@@ -25,9 +25,9 @@ export const getTransporter = () => {
export const sendResetPasswordEmail = async (to: string, link: string) => {
const t = getTransporter();
const subject = "Reset your Project Athena password";
const subject = "Reset your Bird Eye View password";
const html = `
<p>You requested to reset your Project Athena password.</p>
<p>You requested to reset your Bird Eye View password.</p>
<p>Click the link below to set a new password. If you didn't request this, you can ignore this email.</p>
<p><a href="${link}">Reset Password</a></p>
<p>This link will expire shortly for security reasons.</p>
@@ -38,9 +38,9 @@ export const sendResetPasswordEmail = async (to: string, link: string) => {
export const sendInvitationEmail = async (to: string, link: string) => {
const t = getTransporter();
const subject = "You're invited to Project Athena";
const subject = "You're invited to Bird Eye View";
const html = `
<p>You have been invited to join Project Athena.</p>
<p>You have been invited to join Bird Eye View.</p>
<p>Click the link below to set your password and activate your account.</p>
<p><a href="${link}">Accept Invitation</a></p>
<p>This link will expire shortly for security reasons.</p>