From 38355b38ff2575433d9c65e140fd7542516c0378 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:00:03 -0500 Subject: [PATCH] Blazor scaffold Identity remarks --- aspnetcore/security/authentication/scaffold-identity.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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**.