Files
pear-admin-flask/templates/errors/403.html
T
2021-11-14 20:15:26 +08:00

20 lines
614 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="{{ url_for('static', filename='admin/component/pear/css/pear.css') }}" rel="stylesheet"/>
<link href="{{ url_for('static', filename='admin/admin/css/other/error.css') }}" rel="stylesheet"/>
</head>
<body>
<div class="content">
<img src="{{ url_for('static', filename='admin/admin/images/403.svg') }}" alt="">
<div class="content-r">
<h1>403</h1>
<p>抱歉,你无权访问该页面</p>
<button class="pear-btn pear-btn-primary">返回首页</button>
</div>
</div>
</body>
</html>