forked from click33/Sa-Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path403.html
43 lines (43 loc) · 1.29 KB
/
403.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>403</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<style type="text/css">
*{margin: 0; padding: 0;}
html,body,.content-box{height: 100%;}
.content-box{
display: flex;
justify-content: center;
align-items: center;
background-color: #EEE;
}
.tips-box{text-align: center; margin-top: -100px;}
.xian{width: 600px; height: 2px; margin: 40px auto 30px auto; background-color: #515151;}
.error-icon{width: 250px; height: 250px;}
.error-tips{font-size: 22px; font-weight: 700; color: #515151;}
.go-index{display: none;}
</style>
</head>
<body>
<div class="content-box">
<div class="tips-box">
<p>
<img class="error-icon" src="../../static/img/kulian.png" >
</p>
<div class="xian"></div>
<p class="error-tips">
<span>403 - 你还没有权限进行当前操作哦</span>
<span class="go-index">, 你可以:<a href="../../index.html">回到首页</a></span>
</p>
</div>
</div>
<script type="text/javascript">
// 是否显示回到首页
if(parent == window) {
document.querySelector('.go-index').style.display = 'inline';
}
</script>
</body>
</html>