blob: 0ec5c4d758273435638d9288f728864a291312eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
@using Microsoft.AspNetCore.Identity
@inject SignInManager<User> SignInManager
@inject UserManager<User> UserManager
<nav class="navbar border-bottom box-shadow">
<div class="middle-content-container navbar-contents">
<section>
<b>ExamTemplate</b>
<a asp-controller="Home" asp-action="Index">Home</a>
</section>
<div class="flex-spacer"></div>
<section>
@if (SignInManager.IsSignedIn(User))
{
<a asp-controller="Account" asp-action="Profile" asp-route-username="@UserManager.GetUserName(User)">
@UserManager.GetUserName(User)
</a>
<form asp-controller="Account" asp-action="Logout" method="post">
<input type="submit" value="Logout">
</form>
}
else
{
<a asp-controller="Account" asp-action="Login">Login</a>
<a asp-controller="Account" asp-action="Register">Register</a>
}
</section>
</div>
</nav>
|