第一次提交

This commit is contained in:
2026-03-25 15:24:22 +08:00
commit 0f8ac68d4d
156 changed files with 42365 additions and 0 deletions

View 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') }}">&larr; 返回仪表板</a>
</div>
</div>
<style>
.error {
font-size: 7rem;
position: relative;
line-height: 1;
width: 12.5rem;
}
</style>
{% endblock %}