35 lines
1.2 KiB
HTML
35 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>管理员登录 - KJF航班订票</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/login.css') }}">
|
|
<script src="{{ url_for('static', filename='js/login.js') }}" defer></script>
|
|
<script src="https://cdn.bootcss.com/blueimp-md5/2.12.0/js/md5.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>KJF航班订票</h1>
|
|
</header>
|
|
<main>
|
|
<div class="content">
|
|
<h2>管理员登录</h2>
|
|
<div class="login-form">
|
|
<input type="text" id="username" placeholder="用户名">
|
|
<div id="usernameError" class="error-message"></div>
|
|
<input type="password" id="password" placeholder="密码">
|
|
<div id="loginError" class="error-message"></div>
|
|
<input type="hidden" id="encryptedPassword">
|
|
<div class="buttons">
|
|
<button onclick="submitForm()">登录</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
<p>© 2024 KJF航班订票. 保留所有权利。</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|