1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 01:39:00 +00:00
just-short-it/Pages/Shared/_LoginPartial.cshtml
2023-04-15 15:40:46 +02:00

6 lines
228 B
Plaintext

@if (User.Identity?.IsAuthenticated is true) {
<span class="mx-3">@User.Identity.Name</span>
<a class="button is-ghost" asp-page="Logout">Logout</a>
} else {
<a class="button is-ghost" asp-page="Login">Login</a>
}