Files
inventory/templates/error.html

32 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ status_code }} - {{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<header class="hero slim">
<div>
<h1>{{ status_code }} - {{ title }}</h1>
<p>请检查输入参数后重试</p>
</div>
<a class="btn btn-light" href="{{ url_for('index') }}">回到首页</a>
</header>
<main class="container">
<section class="panel">
<p class="alert">{{ message }}</p>
<div class="actions" style="margin-top: 10px;">
<a class="btn" href="{{ back_url }}">返回上一页</a>
{% if status_code >= 500 %}
<a class="btn btn-light" href="{{ url_for('system_logs_page') }}">查看系统日志</a>
{% endif %}
<button class="btn btn-light" type="button" onclick="history.back()">浏览器返回</button>
</div>
</section>
</main>
</body>
</html>