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.
iot/projects/Infrastructure/Views/Shared/AccessDenied.cshtml

15 lines
310 B

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