123456789101112131415161718192021 |
- @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>
|