ASP.NET Core Identity UI is the default Razor Pages built-in UI for the ASP.NET Core Identity framework. This package was built from the source code at https://github.com/dotnet/dotnet/tree/87bc0b04e21d786669142109a5128c95618b75ed
$ dotnet add package Microsoft.AspNetCore.Identity.UIMicrosoft.AspNetCore.Identity.UI provides the default Razor Pages UI for the ASP.NET Core Identity framework.
To use Microsoft.AspNetCore.Identity.UI, follow these steps:
dotnet add package Microsoft.AspNetCore.Identity.UI
Add the following code to the Program.cs of your ASP.NET Core app:
builder.Services.AddDefaultIdentity<IdentityUser>()
.AddEntityFrameworkStores<ApplicationDbContext>();
var app = builder.Build();
app.UseAuthentication();
app.UseAuthorization();
app.MapRazorPages();
For additional documentation and examples, refer to the official ASP.NET Core Identity documentation.
Microsoft.AspNetCore.Identity.UI is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.