yavsc/src/Yavsc.Org/Views/Account/Logout.cshtml

19 lines
443 B
Text
Raw Normal View History

2026-07-04 20:03:56 +01:00
@{
ViewBag.Title = Localizer["Account"];
}
@model LogoutViewModel
2024-02-25 18:05:10 +00:00
<div class="logout-page">
<div class="lead">
<h1>Logout</h1>
2024-11-06 13:00:34 +00:00
<p>Would you like to logut of IdentityServer?</p>
2024-02-25 18:05:10 +00:00
</div>
2024-11-06 13:00:34 +00:00
<form asp-action="Logout">
2024-02-25 18:05:10 +00:00
<input type="hidden" name="logoutId" value="@Model.LogoutId" />
<div class="form-group">
<button class="btn btn-primary">Yes</button>
</div>
</form>
</div>