2024-05-12 18:32:30 +08:00

24 lines
657 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>我的12306官网</title>
<script>
window.onload = function() {
{% with messages = get_flashed_messages() %}
{% if messages %}
var message = "";
{% for msg in messages %}
message += "{{ msg }}\n";
{% endfor %}
alert(message);
{% endif %}
{% endwith %}
};
</script>
</head>
<body>
<h1>Coming soon~</h1>
<div><a href="signup.html">点击跳转注册</a></div>
<div><a href="modify.html">点击跳转修改账号</a></div>
</body>
</html>