You've been asked to configure the system so that users who forget their passwords can reset them using a link sent to their email. Which feature in ASP.NET Core Identity supports this functionality?
- UserManager
- EmailSender
- ResetPasswordToken
- TwoFactorAuthentication
To allow users to reset their passwords using an email link, you would need to utilize the EmailSender feature in ASP.NET Core Identity. This involves sending a password reset email with a secure token that users can use to reset their passwords securely.
Loading...
Related Quiz
- In the context of ASP.NET Core, what does the CLI tool allow developers to do?
- In a certain scenario, you want to display a list of items in multiple views without repeating the same HTML and C# code. What would be the best approach in Razor views?
- How is the order of middleware components significant in ASP.NET Core?
- You are building a blog website using ASP.NET Core and want to ensure that only logged-in users can post comments. How can you achieve this?
- Your manager wants to prevent users from using their username as their password. Which feature in ASP.NET Core Identity helps with this requirement?