mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-04-12 08:57:44 +02:00
12 lines
200 B
Plaintext
12 lines
200 B
Plaintext
@page "/logout"
|
|
@using Phantom.Web.Services.Authentication
|
|
@inject UserLoginManager LoginManager
|
|
|
|
@code {
|
|
|
|
protected override Task OnInitializedAsync() {
|
|
return LoginManager.LogOut();
|
|
}
|
|
|
|
}
|