第一次提交
This commit is contained in:
25
app/web/templates/500.html
Normal file
25
app/web/templates/500.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="500">500</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