ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/LogoutPage.cshtml
2022-05-14 23:37:55 -04:00

10 lines
No EOL
344 B
Text

@page "/logout"
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.LogoutPage
@{
Layout = "Layouts/BaseLayout";
Model.Title = "Logged out";
}
<p>You have been successfully logged out. You will be redirected in 5 seconds, or you may click <a href="/">here</a> to do so manually.</p>
<meta http-equiv="refresh" content="5; url=/"/>