网站首页 网站源码
@page "/logout"
@layout LoginLayout
@inject IAuthenticationService _authenticationService
<MudProgressCircular Color="Color.Primary" Indeterminate="true"/>
<MudText Typo="Typo.h4" GutterBottom="true">正在注销...</MudText>
@code
{
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
await Task.Delay(1000);
await _authenticationService.SignOutAsync();
}
}