Torma Kristóf
634488c2d8
All checks were successful
continuous-integration/drone/push Build is passing
21 lines
584 B
Plaintext
21 lines
584 B
Plaintext
@page
|
|
@model LogoutModel
|
|
@{
|
|
ViewData["Title"] = "Log out";
|
|
}
|
|
|
|
<header>
|
|
<h1>@ViewData["Title"]</h1>
|
|
@{
|
|
if (User.Identity.IsAuthenticated)
|
|
{
|
|
<form class="form-inline" asp-area="Identity" asp-page="/Account/Logout" asp-route-returnUrl="@Url.Page("/", new { area = "" })" method="post">
|
|
<button type="submit" class="nav-link btn btn-link text-dark">Click here to Logout</button>
|
|
</form>
|
|
}
|
|
else
|
|
{
|
|
<p>You have successfully logged out of the application.</p>
|
|
}
|
|
}
|
|
</header> |