I am using the latest SS templates that uses Asp.net Identitity for auth, I need to make updates to the db when a user requests a password reset, are there any methods or routes i can override?
Thanks in advance
I am using the latest SS templates that uses Asp.net Identitity for auth, I need to make updates to the db when a user requests a password reset, are there any methods or routes i can override?
Thanks in advance
You can edit any Account page as all the scaffolding for the ASP .NET Identity Auth Account pages are included in the template, e.g. ResetPassword.razor.
Thanks, sorry should have been clearer, I am using the Spa Reactjs templates, the scafolding project does not have any forgot password functionality on the login page, none that I can see.
Yeah the SPAs don’t have any Identity Auth Account pages and I don’t believe the React SPA template includes a Password Reset feature? It would need to be implemented.
You can look at the other templates for the ASP .NET Identity Auth logic and UserManager<ApplicationUser>
dependencies they use to implement it.