source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/Manage/_Layout.cshtml

main
Last change on this file was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 592 bytes
Line 
1@{
2 if (ViewData.TryGetValue("ParentLayout", out var parentLayout) && parentLayout != null)
3 {
4 Layout = parentLayout.ToString();
5 }
6 else
7 {
8 Layout = "/Areas/Identity/Pages/_Layout.cshtml";
9 }
10}
11
12<h1>Manage your account</h1>
13
14<div>
15 <h2>Change your account settings</h2>
16 <hr />
17 <div class="row">
18 <div class="col-md-3">
19 <partial name="_ManageNav" />
20 </div>
21 <div class="col-md-9">
22 @RenderBody()
23 </div>
24 </div>
25</div>
26
27@section Scripts {
28 @RenderSection("Scripts", required: false)
29}
Note: See TracBrowser for help on using the repository browser.