We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e119a commit 0b07a88Copy full SHA for 0b07a88
eFormAPI/eFormAPI/Controllers/AccountController.cs
@@ -144,7 +144,7 @@ public async Task<OperationResult> ForgotPassword(ForgotPasswordModel model)
144
}
145
var code = await UserManager.GeneratePasswordResetTokenAsync(user.Id);
146
var link = ConfigurationManager.AppSettings["app:siteLink"];
147
- link = $"{link}/login/restore-password?userId={user.Id}&code={code}";
+ link = $"{link}/restore-password-confirmation?userId={user.Id}&code={code}";
148
await UserManager.SendEmailAsync(user.Id, "Reset Password",
149
"Please reset your password by clicking <a href=\"" + link + "\">here</a>");
150
return new OperationResult(true);
0 commit comments