XH_Digital_Management/templates/error_page.html

41 lines
1.4 KiB
HTML
Raw Normal View History

2024-06-14 16:47:43 +08:00
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<title>星环集团 数字化管理系统</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Favicon icon -->
<link rel="icon" href="{% static 'images/favicon.svg' %}" type="image/x-icon">
<!-- fontawesome icon -->
<link rel="stylesheet" href="{% static 'fonts/fontawesome/css/fontawesome-all.min.css' %}">
<!-- animation css -->
<link rel="stylesheet" href="{% static 'plugins/animation/css/animate.min.css' %}">
<!-- vendor css -->
<link rel="stylesheet" href="{% static 'css/style.css' %}">
</head>
<div class="auth-wrapper offline">
<div class="text-center">
<h1 class="mb-4">页面异常</h1>
<h3 class="text-muted mb-4">由于权限不足或者系统错误,您无法访问该页面。</h3>
<h5 class="text-muted mb-4">可联系管理员解决。</h5>
<form action="{% url 'user_homepage' %}">
<button class="btn btn-primary mb-4"><i class="feather icon-home"></i>返回主页</button>
</form>
</div>
</div>
<script src="{% static 'js/vendor-all.min.js' %}"></script>
<script src="{% static 'plugins/bootstrap/js/bootstrap.min.js' %}"></script>
</body>
</html>