网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
@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();
    }
}
loading