mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-28 16:38:01 +08:00
35 lines
843 B
Plaintext
35 lines
843 B
Plaintext
@model OpenAuth.IdentityServer.Quickstart.Account.LoggedOutViewModel
|
|
|
|
@{
|
|
// set this so the layout rendering sees an anonymous user
|
|
ViewData["signed-out"] = true;
|
|
}
|
|
|
|
<div class="page-header logged-out">
|
|
<h1>
|
|
Logout
|
|
<small>You are now logged out</small>
|
|
</h1>
|
|
|
|
@if (Model.PostLogoutRedirectUri != null)
|
|
{
|
|
<div>
|
|
Click <a class="PostLogoutRedirectUri" href="@Model.PostLogoutRedirectUri">here</a> to return to the
|
|
<span>@Model.ClientName</span> application.
|
|
</div>
|
|
}
|
|
|
|
@if (Model.SignOutIframeUrl != null)
|
|
{
|
|
<iframe width="0" height="0" class="signout" src="@Model.SignOutIframeUrl"></iframe>
|
|
}
|
|
</div>
|
|
|
|
@section scripts
|
|
{
|
|
@if (Model.AutomaticRedirectAfterSignOut)
|
|
{
|
|
<script src="~/js/signout-redirect.js"></script>
|
|
}
|
|
}
|