Skip to content

Commit 7c8d740

Browse files
committed
Add documentation on user management pages for ASP.NET Identity
1 parent 69bd134 commit 7c8d740

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

  • astro/src/content/docs/identityserver/aspnet-identity

astro/src/content/docs/identityserver/aspnet-identity/index.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ our `ProfileService<TUser>` and override `IsUserActiveAsync(TUser user)` to chec
6363

6464
## Template
6565

66-
Alternatively, you can use the `duende-is-aspid` [template](/identityserver/overview/packaging.mdx#templates) to create a starter
66+
You can use the `duende-is-aspid` [template](/identityserver/overview/packaging.mdx#templates) to create a starter
6767
IdentityServer host project configured to use ASP.NET Identity. See
6868
the [Quickstart Documentation](/identityserver/quickstarts/5-aspnetid.md) for a detailed walkthrough.
69+
70+
## User Management Pages
71+
72+
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.
73+
74+
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.
75+

0 commit comments

Comments
 (0)