I created a new Blazor project with individual accounts, then transferred the files over to the existing project. Then renamed ApplicationDbContext to: IdentityContext to distinguish from the application context. Then ran the update database command with the existing migration for identity.
18 lines
357 B
Plaintext
18 lines
357 B
Plaintext
@inherits LayoutComponentBase
|
|
@layout ServerManagement.Components.Layout.MainLayout
|
|
|
|
<h1>Manage your account</h1>
|
|
|
|
<div>
|
|
<h2>Change your account settings</h2>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-lg-3">
|
|
<ManageNavMenu />
|
|
</div>
|
|
<div class="col-lg-9">
|
|
@Body
|
|
</div>
|
|
</div>
|
|
</div>
|