You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: astro/src/content/docs/identityserver/aspnet-identity/index.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,19 @@ our `ProfileService<TUser>` and override `IsUserActiveAsync(TUser user)` to chec
63
63
64
64
## Template
65
65
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
67
67
IdentityServer host project configured to use ASP.NET Identity. See
68
68
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,
73
+
consent, error). User management pages — such as forgot password, password reset, or two-factor
74
+
authentication setup — are not part of the IdentityServer templates because they are specific to your
75
+
user store implementation.
76
+
77
+
Since ASP.NET Core Identity provides built-in support for these features, you can add them to your
78
+
IdentityServer host by [scaffolding Identity into your project](https://learn.microsoft.com/en-us/aspnet/core/security/authentication/scaffold-identity).
79
+
This gives you ready-made pages for password reset, email confirmation, two-factor authentication,
80
+
and more — all integrated with the ASP.NET Core Identity user store you've already configured.
0 commit comments