第一次提交
This commit is contained in:
25
app/web/templates/404.html
Normal file
25
app/web/templates/404.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}页面未找到 - 软件授权管理系统{% endblock %}
|
||||
|
||||
{% block page_title %}页面未找到{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-6 text-center">
|
||||
<div class="error mx-auto" data-text="404">404</div>
|
||||
<p class="lead text-gray-800 mb-5">抱歉,您访问的页面不存在</p>
|
||||
<p class="text-gray-500 mb-0">看起来您迷失了方向...</p>
|
||||
<a href="{{ url_for('web.dashboard') }}">← 返回仪表板</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.error {
|
||||
font-size: 7rem;
|
||||
position: relative;
|
||||
line-height: 1;
|
||||
width: 12.5rem;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user