16 lines
443 B
C#
16 lines
443 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace ConfigurationPannel.Pages;
|
|
|
|
public class LogoutModel : PageModel
|
|
{
|
|
public async Task<IActionResult> OnGetAsync()
|
|
{
|
|
await HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
|
return RedirectToPage("/Login");
|
|
}
|
|
}
|