zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Views/Account/Logout.cshtml
2023-12-05 17:22:48 +08:00

18 lines
568 B
Plaintext

@model ZeroFramework.IdentityServer.API.Models.Accounts.LogoutViewModel
@{
ViewData["Title"] = "Logout";
}
<section class="card mt-3">
<div class="card-header">
<h4>Logout</h4>
</div>
<div class="col-sm-6 card-body">
<p>Would you like to logout of IdentityServer?</p>
<form asp-action="Logout">
<input type="hidden" name="logoutId" value="@Model.LogoutId" />
<div class="form-group">
<button class="btn btn-primary">Yes</button>
</div>
</form>
</div>
</section>