Reputation: 81
I implemented identity and authorization with razor pages in asp.net 5.0 razor pages and i am able to access this roles directly from the database. How do i created a UI to manage users and their roles? Anyone can guide into useful resource
Upvotes: 0
Views: 1049
Reputation: 4829
Although there is built-in UI in ASP.NET Core and you can easily add it to your project, you can also customize it as you desire. Here is a great article on this matter which walks you through on details of creating UI for user and membership management in ASP.NET Core:
Custom User Management in ASP.NET Core MVC with Identity
Upvotes: 1