Files
showpic/public/login.html
T
2026-07-16 23:13:56 +08:00

33 lines
1.0 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>登录 - 图片资源管理</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main class="container">
<div class="login-form">
<h2>管理员登录</h2>
<div id="error" class="error" style="display: none;"></div>
<form id="loginForm">
<div class="form-group">
<label for="username">用户名</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">密码</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="btn" style="width: 100%;">登录</button>
</form>
</div>
</main>
<script src="js/login.js"></script>
</body>
</html>