2018-10-26 07:22:53 +02:00
|
|
|
@model LoggedOutViewModel
|
|
|
|
|
|
|
|
@{
|
|
|
|
// set this so the layout rendering sees an anonymous user
|
|
|
|
ViewData["signed-out"] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12 text-center">
|
2019-01-13 00:06:55 +01:00
|
|
|
<h2>
|
|
|
|
You are now logged out
|
|
|
|
</h2>
|
2018-10-26 07:22:53 +02:00
|
|
|
|
|
|
|
@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)
|
|
|
|
{
|
2019-01-20 08:27:53 +01:00
|
|
|
<iframe width="0" height="0" style="width:0; height:0; border:0; border:none" class="signout" src="@Model.SignOutIframeUrl"></iframe>
|
2018-10-26 07:22:53 +02:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@if (Model.AutomaticRedirectAfterSignOut)
|
|
|
|
{
|
|
|
|
<bundle src="js/signout-redirect.min.js" append-version="true"></bundle>
|
|
|
|
}
|