diff --git a/aspnetcore/security/authentication/scaffold-identity.md b/aspnetcore/security/authentication/scaffold-identity.md index d20c9fc30c8e..6bba47a1373a 100644 --- a/aspnetcore/security/authentication/scaffold-identity.md +++ b/aspnetcore/security/authentication/scaffold-identity.md @@ -147,15 +147,16 @@ dotnet aspnet-codegenerator identity -dc MvcAuth.Data.ApplicationDbContext --fi ## Client-side Blazor apps -Client-side Blazor apps use their own Identity UI approaches and can't use ASP.NET Core Identity scaffolding. Server-side ASP.NET Core apps of hosted Blazor solutions can follow the Razor Pages/MVC guidance in this article and are configured just like any other type of ASP.NET Core app that supports Identity. +Client-side Blazor apps use their own Identity UI approaches and can't use ASP.NET Core Identity scaffolding. -The Blazor framework doesn't include Razor component versions of Identity UI pages. Identity UI Razor components can be custom built or obtained from unsupported third-party sources. +Server-side ASP.NET Core apps can follow the Razor Pages/MVC guidance in this article and are configured just like any other type of ASP.NET Core app that supports Identity. The Blazor framework uses Razor component versions (`.razor`) of Identity UI pages (`.cshtml`) when scaffolding Identity into a Blazor Web App. For more information, see the [Blazor Security and Identity articles](xref:blazor/security/index). ## Create full Identity UI source + To maintain full control of the Identity UI, run the Identity scaffolder and select **Override all files**.