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.

29 lines
677 B

@page "/logout"
<div>
@if (LogOutModel.Prompt)
{
<h1>
退出
<small>你现在已经退出!</small>
</h1>
@if (LogOutModel.PostLogoutRedirectUri != null)
{
<a href="@LogOutModel.PostLogoutRedirectUri">是的,回到主页.</a>
}
}
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>