Povilas Dirse
Povilas Dirse

Reputation: 147

Blazor application with identity doesn't create account controller

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

Answers (1)

Brian Parker
Brian Parker

Reputation: 14623

You need to Scaffold RegisterConfirmation and configure an Email provider.

Account confirmation and password recovery in ASP.NET Core

Upvotes: 2

Related Questions