20 lines
579 B
HTML
20 lines
579 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
{% include 'system/common/header.html' %}
|
|
<link href="{{ url_for('static', filename='system/admin/css/other/error.css') }}" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
<div class="content">
|
|
<img src="{{ url_for('static', filename='system/admin/images/404.svg') }}" alt="">
|
|
<div class="content-r">
|
|
<h1>404</h1>
|
|
<p>抱歉,你访问的页面不存在或仍在开发中</p>
|
|
<button class="layui-btn layui-btn-primary">返回首页</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|