33 lines
644 B
Plaintext
33 lines
644 B
Plaintext
@{
|
|
if (ViewData.TryGetValue("ParentLayout", out var parentLayout))
|
|
{
|
|
Layout = (string)parentLayout;
|
|
}
|
|
else
|
|
{
|
|
Layout = "/Areas/Identity/Pages/_Layout.cshtml";
|
|
}
|
|
}
|
|
|
|
<div class="container">
|
|
<h1>Manage your account</h1>
|
|
|
|
<div>
|
|
<h4>Change your account settings</h4>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<partial name="_ManageNav" />
|
|
</div>
|
|
<div class="col-md-9">
|
|
@RenderBody()
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@section Scripts {
|
|
@RenderSection("Scripts", required: false)
|
|
}
|