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.
20 lines
719 B
20 lines
719 B
@using System.Security.Claims
|
|
|
|
@if (User.Identity.IsAuthenticated)
|
|
{
|
|
<form asp-controller="Account" asp-action="LogOff" method="post" id="logoutForm" class="navbar-right">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li>
|
|
<a asp-controller="Manage" asp-action="Index" title="Manage">Hello @User.GetUserName()!</a>
|
|
</li>
|
|
<li><a href="javascript:document.getElementById('logoutForm').submit()">Log off</a></li>
|
|
</ul>
|
|
</form>
|
|
}
|
|
else
|
|
{
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li><a asp-controller="Account" asp-action="Register">Register</a></li>
|
|
<li><a asp-controller="Account" asp-action="Login">Log in</a></li>
|
|
</ul>
|
|
}
|
|
|