Hello,
I googled thoroughly but there is hundred examples from ASP.NET but nothing about ASP.NET Core.
In order to getting password reset work I need to registe
Add .AddDefaultTokenProviders(); in ConfigureServices() method in startupclass
.AddDefaultTokenProviders();
`in public void ConfigureServices(IServiceCollection services) { services.AddIdentity() .AddEntityFrameworkStores() .AddDefaultTokenProviders(); } `