You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
827 B

@page "/logout"
<div>
@if (LogOutModel.Prompt)
{
<h4>
退出
<small>你现在已经退出!</small>
</h4>
@if (LogOutModel.PostLogoutRedirectUri != null)
{
<a href="@LogOutModel.PostLogoutRedirectUri">是的,回到主页.</a>
}
@if(LogOutModel.SignOutIFrameUrl != null)
{
<iframe style="display:none;" src="@LogOutModel.SignOutIFrameUrl"/>
}
}
else
{
<div class="posA Layout">
<div class="posA layout">
<h1>CLOSE</h1>
<p>您要注销当前系统吗?</p>
<ul class="dis_between">
<a @onclick="HandleSubmit" class="bg">确定</a>
</ul>
</div>
</div>
}
</div>