When I create a new project in .NET Core 2.1, I can not find the views behind /Identity/Account/Manage? Where is it, how do I change the page style now?
Asked
Active
Viewed 709 times
5
-
Possible duplicate of [Identity in ASP.Net Core 2.1 : Customize AccountController](https://stackoverflow.com/questions/50676654/identity-in-asp-net-core-2-1-customize-accountcontroller) – marcusturewicz Jun 26 '18 at 06:34
1 Answers
7
The views are now part of a precompiled library (Microsoft.AspNetCore.Identity.UI) being linked into the project, not separate pages. You can create the views yourself and they will override the library ones if needed.
For more information see the Microsoft blog post.
You can also scaffold the identity into the project.

Sami Kuhmonen
- 30,146
- 9
- 61
- 74