Files
inventory/templates/error.html

26 lines
888 B
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">
<h1>{{ status_code }} - {{ title }}</h1>
<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>
<button class="btn btn-light" type="button" onclick="history.back()">浏览器返回</button>
</div>
</section>
</main>
</body>
</html>