mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-21 08:42:27 +00:00
16 lines
No EOL
441 B
Text
16 lines
No EOL
441 B
Text
@page "/logout"
|
|
@using LBPUnion.ProjectLighthouse.Localization.StringLists
|
|
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.LogoutPage
|
|
|
|
@{
|
|
Layout = "Layouts/BaseLayout";
|
|
Model.Title = Model.Translate(LoggedOutStrings.LoggedOut);
|
|
}
|
|
|
|
<p>@Model.Translate(LoggedOutStrings.LoggedOutInfo)</p>
|
|
|
|
<a href="/" class="ui blue button">
|
|
@Model.Translate(LoggedOutStrings.Redirect)
|
|
</a>
|
|
|
|
<meta http-equiv="refresh" content="5; url=/"/> |