Spaces:
Sleeping
Sleeping
| "/logout" | |
| BlazorFrontend.Providers | |
| Microsoft.AspNetCore.Components.Authorization | |
| AuthenticationStateProvider AuthStateProvider | |
| NavigationManager Navigation | |
| <PageTitle>Logging out...</PageTitle> | |
| <div class="text-center mt-10"> | |
| <p class="text-slate-600">Signing you out...</p> | |
| </div> | |
| { | |
| protected override async Task OnInitializedAsync() | |
| { | |
| var jwtProvider = (JwtAuthenticationStateProvider)AuthStateProvider; | |
| await jwtProvider.LogoutAsync(); | |
| Navigation.NavigateTo("/login"); | |
| } | |
| } | |