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

15 lines
398 B
Text
Raw Normal View History

2024-11-06 13:00:34 +00:00
@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>