You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
564 B
30 lines
564 B
@{
|
|
if (ViewData.TryGetValue("ParentLayout", out var parentLayout))
|
|
{
|
|
Layout = (string)parentLayout;
|
|
}
|
|
else
|
|
{
|
|
Layout = "/Areas/Identity/Pages/_Layout.cshtml";
|
|
}
|
|
}
|
|
|
|
<h2>Manage your account</h2>
|
|
|
|
<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>
|
|
|
|
@section Scripts {
|
|
@RenderSection("Scripts", required: false)
|
|
}
|