Anapher/Strive

View on GitHub
src/Services/Identity/Identity.API/Views/Account/Logout.cshtml

Summary

Maintainability
Test Coverage
@model Identity.API.Quickstart.Account.LogoutViewModel

<div class="logout-page">
    <div class="lead">
        <h1>Logout</h1>
        <p>Would you like to logout of IdentityServer?</p>
    </div>

    <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>