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.
|
@{
|
|
Layout = "/Views/Shared/_Layout.cshtml";
|
|
}
|
|
<div class="row">
|
|
<div class="jumbotron text-center">
|
|
@if (User.Identity.IsAuthenticated)
|
|
{
|
|
<p>当前用户权限不足</p>
|
|
}
|
|
else
|
|
{
|
|
<p>权限不足,请登录</p>
|
|
}
|
|
</div>
|
|
</div> |