Add Username to MailConfig and fix typo

This commit is contained in:
Slendy 2022-10-03 23:25:18 -05:00
commit 5bc875bc04
No known key found for this signature in database
GPG key ID: 7288D68361B91428
4 changed files with 6 additions and 4 deletions

View file

@ -46,7 +46,7 @@ public class PasswordResetRequestForm : BaseLayout
if (user == null)
{
this.Status = $"A password reset request has been sent to the email {email}.\n" +
this.Status = $"A password reset request has been sent to the email {email}. " +
"If you do not receive an email verify that you have entered the correct email address";
return this.Page();
}
@ -68,7 +68,7 @@ public class PasswordResetRequestForm : BaseLayout
this.Database.PasswordResetTokens.Add(token);
await this.Database.SaveChangesAsync();
this.Status = $"A password reset request has been sent to the email {email}." +
this.Status = $"A password reset request has been sent to the email {email}. " +
"If you do not receive an email verify that you have entered the correct email address";
return this.Page();
}