31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>登录 - 管理后台</title>
|
|
<link rel="stylesheet" href="/static/login.css">
|
|
</head>
|
|
<body>
|
|
<div class="page">
|
|
<div class="card login-card">
|
|
<h2 class="title">管理员登录</h2>
|
|
<form method="post" action="/admin/login" class="form">
|
|
<input type="hidden" name="_csrf" value="placeholder">
|
|
<div class="form-group">
|
|
<label for="username">用户名</label>
|
|
<input id="username" type="text" name="username" placeholder="输入用户名" autocomplete="username" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">密码</label>
|
|
<input id="password" type="password" name="password" placeholder="输入密码" autocomplete="current-password" required>
|
|
</div>
|
|
<button class="btn btn-primary btn-block" type="submit">登录</button>
|
|
</form>
|
|
</div>
|
|
<div class="footer"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|