Initial commit
This commit is contained in:
17
Views/Home/Disconnect.cshtml
Normal file
17
Views/Home/Disconnect.cshtml
Normal file
@@ -0,0 +1,17 @@
|
||||
@using Microsoft.AspNetCore.Mvc.ApiExplorer;
|
||||
@using SimpleIdp.Resources
|
||||
@model SimpleIdServer.IdServer.UI.ViewModels.DisconnectViewModel
|
||||
|
||||
@{
|
||||
ViewBag.Title = LayoutResource.Disconnected;
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
|
||||
<h6>@LayoutResource.YouAreDisconnected</h6>
|
||||
|
||||
@foreach (var frontChannelLogout in Model.FrontChannelLogoutUrls)
|
||||
{
|
||||
<iframe src="@frontChannelLogout" style="display: none"></iframe>
|
||||
}
|
||||
|
||||
<a href="@Url.Action("Index", "Home")" class="btn btn-primary mt-1">@LayoutResource.back</a>
|
||||
Reference in New Issue
Block a user