37 lines
1.2 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>我的12306官网</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/index.css') }}">
<script src="{{ url_for('static', filename='js/index.js') }}" defer></script>
</head>
<body>
<header>
<h1>中国铁路12306</h1>
<nav>
<ul>
<li><a href="{{ url_for('index') }}">首页</a></li>
<li><a href="{{ url_for('signup') }}">注册</a></li>
<li><a href="{{ url_for('modify') }}">修改账号</a></li>
</ul>
</nav>
</header>
<main>
<div class="background-container">
<div class="content">
<h2>尽享精彩出行服务</h2>
<div class="links">
<a class="btn" href="{{ url_for('signup') }}">点击跳转注册</a>
<a class="btn" href="{{ url_for('modify') }}">点击跳转修改账号</a>
</div>
</div>
</div>
</main>
<footer>
<p>&copy; 2024 中国铁路12306. 保留所有权利。</p>
</footer>
</body>
</html>