27 lines
947 B
Plaintext
27 lines
947 B
Plaintext
@using Microsoft.AspNetCore.Identity
|
|
@using ChatSample.Models
|
|
|
|
@inject SignInManager<ApplicationUser> SignInManager
|
|
@inject UserManager<ApplicationUser> UserManager
|
|
|
|
@if (SignInManager.IsSignedIn(User))
|
|
{
|
|
<form asp-area="" asp-controller="Account" asp-action="LogOff" method="post" id="logoutForm" class="navbar-right">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li>
|
|
<a asp-area="" asp-controller="Manage" asp-action="Index" title="Manage">Hello @UserManager.GetUserName(User)!</a>
|
|
</li>
|
|
<li>
|
|
<button type="submit" class="btn btn-link navbar-btn navbar-link">Log off</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
}
|
|
else
|
|
{
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li><a asp-area="" asp-controller="Account" asp-action="Register">Register</a></li>
|
|
<li><a asp-area="" asp-controller="Account" asp-action="Login">Log in</a></li>
|
|
</ul>
|
|
}
|