MrDoc/template/403.html

28 lines
844 B
HTML
Raw Normal View History

2019-12-01 20:44:16 +08:00
{% load staticfiles %}
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>拒绝访问 - 觅道文档MrDoc</title>
2019-12-01 20:44:16 +08:00
<link href="{% static 'layui/css/layui.css' %}" rel="stylesheet">
<link href="{% static 'mrdoc.css' %}" rel="stylesheet">
</head>
2020-01-01 21:24:29 +08:00
<body class="layui-container">
2019-12-01 20:44:16 +08:00
<!-- 页头 -->
{% include 'app_doc/head_base.html' %}
<!-- 页头结束 -->
<div class="layui-main">
<div style="text-align: center;margin-top: 40px;">
<h1>
<strong>你无权访问当前页面……</strong>
</h1>
<!--<img src="{% static '404.png' %}">-->
<p><a href="{% url 'pro_list' %}" >返回首页</a></p>
</div>
</div>
<script src="https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script>
<script src="{% static 'layui/layui.all.js' %}"></script>
</body>
</html>