mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-09-02 15:46:51 +00:00
Add Username to MailConfig and fix typo
This commit is contained in:
parent
07fa58b180
commit
5bc875bc04
4 changed files with 6 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue