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.
49 lines
1.1 KiB
49 lines
1.1 KiB
extends /layouts/page.pug
|
|
|
|
block pageContent
|
|
.no-auth-container
|
|
.no-auth-icon
|
|
i.fa.fa-lock
|
|
h2 访问受限
|
|
p 您没有权限访问此页面,请先登录或联系管理员。
|
|
a.btn(href='/login') 去登录
|
|
|
|
block pageHead
|
|
style.
|
|
.no-auth-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 60vh;
|
|
text-align: center;
|
|
}
|
|
.no-auth-icon {
|
|
font-size: 4em;
|
|
color: #ff6a6a;
|
|
margin-bottom: 20px;
|
|
}
|
|
.no-auth-container h2 {
|
|
margin: 0 0 10px 0;
|
|
color: #333;
|
|
}
|
|
.no-auth-container p {
|
|
color: #888;
|
|
margin-bottom: 24px;
|
|
}
|
|
.no-auth-container .btn {
|
|
display: inline-block;
|
|
padding: 10px 32px;
|
|
background: linear-gradient(90deg, #4fd1ff 0%, #ff6a6a 100%);
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 24px;
|
|
font-size: 1.1em;
|
|
text-decoration: none;
|
|
transition: background 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
.no-auth-container .btn:hover {
|
|
background: linear-gradient(90deg, #ffb86c 0%, #4fd1ff 100%);
|
|
color: #fff200;
|
|
}
|