aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Views/Shared/_Navbar.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'ExamTemplate/Web/Views/Shared/_Navbar.cshtml')
-rw-r--r--ExamTemplate/Web/Views/Shared/_Navbar.cshtml31
1 files changed, 0 insertions, 31 deletions
diff --git a/ExamTemplate/Web/Views/Shared/_Navbar.cshtml b/ExamTemplate/Web/Views/Shared/_Navbar.cshtml
deleted file mode 100644
index 0ec5c4d..0000000
--- a/ExamTemplate/Web/Views/Shared/_Navbar.cshtml
+++ /dev/null
@@ -1,31 +0,0 @@
-@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>