48 lines
1.6 KiB
HTML
48 lines
1.6 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>{{ app_name }} - 登录注册</title>
|
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg?v=20260406a" />
|
|
<link rel="stylesheet" href="/static/style.css?v=20260410a" />
|
|
</head>
|
|
<body class="simple-page">
|
|
<main class="simple-wrap">
|
|
<section class="panel simple-panel">
|
|
<h2>登录 / 注册</h2>
|
|
<p class="muted small">登录后将跳转到编辑主页。</p>
|
|
|
|
<div class="grid2">
|
|
<div>
|
|
<label>用户名</label>
|
|
<input id="username" type="text" placeholder="请输入用户名" />
|
|
</div>
|
|
<div>
|
|
<label>密码</label>
|
|
<input id="password" type="password" placeholder="请输入密码(至少 6 位)" />
|
|
</div>
|
|
</div>
|
|
<div class="check-row">
|
|
<label class="check-label">
|
|
<input id="rememberMe" type="checkbox" checked />
|
|
<span>7 天内免登录(限时)</span>
|
|
</label>
|
|
<a class="subtle-link" href="/auth/forgot">忘记密码?</a>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<button id="loginBtn" class="primary" type="button">登录</button>
|
|
<button id="registerBtn" class="secondary" type="button">注册</button>
|
|
</div>
|
|
<p id="status" class="status"></p>
|
|
</section>
|
|
</main>
|
|
|
|
<script>
|
|
window.__NEXT_PATH__ = {{ next|tojson }};
|
|
</script>
|
|
<script src="/static/auth.js?v=20260410a"></script>
|
|
</body>
|
|
</html>
|