Created
April 22, 2020 19:11
-
-
Save cmatskas/418ef6909332ee0e10c54ee106068905 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="navbar-nav"> | |
@if (User.Identity.IsAuthenticated) | |
{ | |
<li class="nav-item"> | |
<span class="navbar-text text-dark">Hello @User.Identity.Name!</span> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link text-dark" asp-area="MicrosoftIdentity" asp-controller="Account" asp-action="SignOut">Sign out</a> | |
</li> | |
} | |
else | |
{ | |
<li class="nav-item"> | |
<a class="nav-link text-dark" asp-area="MicrosoftIdentity" asp-controller="Account" asp-action="SignIn">Sign in</a> | |
</li> | |
} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment