- Implemented OAuthClientsController for CRUD operations on OAuth clients. - Added SecurityController to manage security settings. - Created SubscriptionsController for handling subscriptions with export functionality. - Developed TenantsController for tenant management including create, edit, and delete operations. - Added views for each controller to facilitate user interaction. - Introduced layout and shared views for consistent admin UI. - Implemented model classes for handling data in views. - Added validation and error handling in forms.
8 lines
260 B
Plaintext
8 lines
260 B
Plaintext
@model MemberCenter.Infrastructure.Identity.ApplicationUser
|
|
|
|
<h1>Profile</h1>
|
|
<p>Email: @Model.Email</p>
|
|
<p>Verified: @Model.EmailConfirmed</p>
|
|
<p>Created: @Model.CreatedAt</p>
|
|
<p><a asp-controller="Account" asp-action="ChangePassword">Change Password</a></p>
|