Reputation: 147
I created blazor app. Implemented aspnet identity. I can register, login. But now I want to enable email confirmation and password reset. For that I need to have accountr controller which is default for aspnet identity. But there is no way to implement it. How I should be able to get that 'default' controller?
Upvotes: 1
Views: 444
Reputation: 14623
You need to Scaffold RegisterConfirmation and configure an Email provider.
Account confirmation and password recovery in ASP.NET Core
Upvotes: 2