mirror of
https://github.com/miawinter98/just-short-it.git
synced 2024-11-10 03:59:53 +00:00
20 lines
637 B
Plaintext
20 lines
637 B
Plaintext
@page "/logout"
|
|
@using Microsoft.AspNetCore.Authentication
|
|
@using Microsoft.AspNetCore.Authentication.Cookies
|
|
|
|
@inject IHttpContextAccessor HttpContextAccessor;
|
|
@inject NavigationManager Navigation;
|
|
|
|
<PageTitle>Logout - Just Short It</PageTitle>
|
|
|
|
<p class="text-xl text-error">How did you get here?</p>
|
|
|
|
@code {
|
|
protected override async Task OnInitializedAsync() {
|
|
var context = HttpContextAccessor.HttpContext;
|
|
if (context is null) throw new ArgumentException("HttpContext");
|
|
await context.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
|
Navigation.NavigateTo("/", true);
|
|
}
|
|
}
|