Files
hsa/Html/templates/login.html
2025-08-24 21:01:00 +08:00

48 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>登录</title>
<link rel="stylesheet" href="/static/css/login.css">
<script src="/static/js/login.js"></script>
</head>
<body>
<div class="login-container">
<div class="login-card">
<h2 class="login-title">欢迎回来!</h2>
<form class="login-form" id="login-form">
<!-- 用户名字段 -->
<div class="input-group">
<label for="username" id="username-label">用户名</label>
<input type="text" id="username" name="username" placeholder="请输入用户名" required>
</div>
<!-- 密码字段 -->
<div class="input-group">
<label for="password" id="password-label">密码</label>
<input type="password" id="password" name="password" placeholder="请输入密码" required>
</div>
<button type="submit" class="login-btn">登录</button>
<!-- 切换角色按钮 -->
<div class="role-switch">
<button type="button" id="switch-role" class="role-btn">切换到教师登录</button>
</div>
<div class="register-link">
<a href="/register" id="register-link-href">注册新账号</a>
</div>
<div class="forgot-password">
<a href="#">忘记密码?</a>
</div>
</form>
</div>
</div>
</body>
</html>