Where is the identity view?

核能气质少年 提交于 2019-12-23 09:55:57

问题


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?


回答1:


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.



来源:https://stackoverflow.com/questions/51016785/where-is-the-identity-view

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!