mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 11:04:25 +00:00
18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
@page
|
|
@using Marechai.Database.Models
|
|
@attribute [IgnoreAntiforgeryToken]
|
|
@inject SignInManager<ApplicationUser> SignInManager
|
|
|
|
@functions {
|
|
|
|
public async Task<IActionResult> OnPost()
|
|
{
|
|
if(SignInManager.IsSignedIn(User))
|
|
{
|
|
await SignInManager.SignOutAsync();
|
|
}
|
|
|
|
return Redirect("~/");
|
|
}
|
|
|
|
} |