Kamixitong/app/web/templates/500.html
2025-11-11 21:39:12 +08:00

25 lines
683 B
HTML

{% 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 %}