Files
webdoorcreator/WebDoorCreator.UI/Shared/MainLayout.razor
T
2023-03-06 17:53:42 +01:00

39 lines
1.1 KiB
Plaintext

@inherits LayoutComponentBase
@using WebDoorCreator.UI.Components
<PageTitle>WebDoorCreator.UI</PageTitle>
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<div class="top-row px-4 auth">
<LoginDisplay />
</div>
<AuthorizeView>
<Authorized>
<div class="text-end text-nowrap px-3">
<a href="Identity/Account/Manage" class="py-2" style="">Hello, @context.User.Identity?.Name!</a>
@*<form method="post" action="Identity/Account/LogOut">
<button type="submit" class="nav-link btn btn-link">Log out</button>
</form>*@
</div>
</Authorized>
</AuthorizeView>
<article class="content px-4">
@Body
</article>
<div class="fixed-bottom bottom-row px-2">
<CmpFooter></CmpFooter>
</div>
</main>
</div>
@*<footer class="bottom-row footer border-top pl-3 text-muted">
<div class="d-flex justify-content-between w-100 px-4">
&copy; 2023 - WebDoorCreator.UI
</div>
</footer>*@