From 7c8d740a3874942ac26343d9212bc75cec0a91e2 Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Wed, 6 May 2026 14:43:09 +0200 Subject: [PATCH 1/2] Add documentation on user management pages for ASP.NET Identity --- .../content/docs/identityserver/aspnet-identity/index.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/astro/src/content/docs/identityserver/aspnet-identity/index.md b/astro/src/content/docs/identityserver/aspnet-identity/index.md index 7749615a..fc095c31 100644 --- a/astro/src/content/docs/identityserver/aspnet-identity/index.md +++ b/astro/src/content/docs/identityserver/aspnet-identity/index.md @@ -63,6 +63,13 @@ our `ProfileService` and override `IsUserActiveAsync(TUser user)` to chec ## Template -Alternatively, you can use the `duende-is-aspid` [template](/identityserver/overview/packaging.mdx#templates) to create a starter +You can use the `duende-is-aspid` [template](/identityserver/overview/packaging.mdx#templates) to create a starter IdentityServer host project configured to use ASP.NET Identity. See the [Quickstart Documentation](/identityserver/quickstarts/5-aspnetid.md) for a detailed walkthrough. + +## User Management Pages + +The IdentityServer templates only include pages necessary for the authentication flow (login, logout, consent, error). User management pages — such as forgot password, password reset, or two-factor authentication setup — are not part of the IdentityServer templates because they are specific to your user store implementation. + +Since ASP.NET Core Identity provides built-in support for these features, you can add them to your IdentityServer host by [scaffolding Identity into your project](https://learn.microsoft.com/en-us/aspnet/core/security/authentication/scaffold-identity). This gives you ready-made pages for password reset, email confirmation, two-factor authentication, and more — all integrated with the ASP.NET Core Identity user store you've already configured. + From 2c285ba5daed0336e2aeade8acf4fe58c9a3c879 Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Wed, 6 May 2026 15:00:18 +0200 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../docs/identityserver/aspnet-identity/index.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/astro/src/content/docs/identityserver/aspnet-identity/index.md b/astro/src/content/docs/identityserver/aspnet-identity/index.md index fc095c31..5d815e17 100644 --- a/astro/src/content/docs/identityserver/aspnet-identity/index.md +++ b/astro/src/content/docs/identityserver/aspnet-identity/index.md @@ -69,7 +69,13 @@ the [Quickstart Documentation](/identityserver/quickstarts/5-aspnetid.md) for a ## User Management Pages -The IdentityServer templates only include pages necessary for the authentication flow (login, logout, consent, error). User management pages — such as forgot password, password reset, or two-factor authentication setup — are not part of the IdentityServer templates because they are specific to your user store implementation. - -Since ASP.NET Core Identity provides built-in support for these features, you can add them to your IdentityServer host by [scaffolding Identity into your project](https://learn.microsoft.com/en-us/aspnet/core/security/authentication/scaffold-identity). This gives you ready-made pages for password reset, email confirmation, two-factor authentication, and more — all integrated with the ASP.NET Core Identity user store you've already configured. +The IdentityServer templates only include pages necessary for the authentication flow (login, logout, +consent, error). User management pages — such as forgot password, password reset, or two-factor +authentication setup — are not part of the IdentityServer templates because they are specific to your +user store implementation. + +Since ASP.NET Core Identity provides built-in support for these features, you can add them to your +IdentityServer host by [scaffolding Identity into your project](https://learn.microsoft.com/en-us/aspnet/core/security/authentication/scaffold-identity). +This gives you ready-made pages for password reset, email confirmation, two-factor authentication, +and more — all integrated with the ASP.NET Core Identity user store you've already configured.