Kamixitong/app/web/templates/404.html

25 lines
695 B
HTML
Raw Normal View History

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