100 lines
3.4 KiB
HTML
100 lines
3.4 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=20260428h" />
|
|
<link rel="stylesheet" href="/static/style.css?v=20260428h" />
|
|
</head>
|
|
<body class="simple-page auth-page">
|
|
<main class="auth-shell">
|
|
<section class="auth-showcase" aria-label="产品介绍">
|
|
<div class="brand-lockup auth-brand-lockup">
|
|
<img class="logo-mark auth-logo" src="/static/favicon.svg?v=20260428h" alt="" />
|
|
<div>
|
|
<h1>{{ app_name }}</h1>
|
|
<p>公众号内容工作台</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="auth-hero-copy">
|
|
<p class="auth-kicker">AI Content Studio</p>
|
|
<h2>从原文到草稿,一气呵成</h2>
|
|
<p>改写、封面、发布,集中完成。</p>
|
|
</div>
|
|
|
|
<div class="auth-preview-card">
|
|
<div class="auth-preview-body">
|
|
<div class="auth-preview-cover">
|
|
<img src="/static/favicon.svg?v=20260428h" alt="" />
|
|
<div>
|
|
<strong>今日选题</strong>
|
|
<p>自动生成公众号封面</p>
|
|
</div>
|
|
</div>
|
|
<div class="auth-preview-steps">
|
|
<span>改写</span>
|
|
<span>封面</span>
|
|
<span>发布</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="auth-feature-row">
|
|
<div>
|
|
<strong>AI 改写</strong>
|
|
<span>标题、摘要、正文一次成稿</span>
|
|
</div>
|
|
<div>
|
|
<strong>封面生成</strong>
|
|
<span>按标题自动生成头图</span>
|
|
</div>
|
|
<div>
|
|
<strong>草稿发布</strong>
|
|
<span>直达公众号草稿箱</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="auth-panel" aria-label="登录注册">
|
|
<div class="auth-panel-head">
|
|
<h2>欢迎回来</h2>
|
|
<p>登录后继续创作。</p>
|
|
</div>
|
|
|
|
<div class="auth-form">
|
|
<div>
|
|
<label>用户名</label>
|
|
<input id="username" type="text" placeholder="请输入用户名" autocomplete="username" />
|
|
</div>
|
|
<div>
|
|
<label>密码</label>
|
|
<input id="password" type="password" placeholder="请输入密码(至少 6 位)" autocomplete="current-password" />
|
|
</div>
|
|
<div class="check-row">
|
|
<label class="check-label">
|
|
<input id="rememberMe" type="checkbox" checked />
|
|
<span>7 天内免登录</span>
|
|
</label>
|
|
<a class="auth-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>
|
|
</div>
|
|
|
|
<div class="auth-footnote">首次使用建议先完成公众号与模型配置。</div>
|
|
</section>
|
|
</main>
|
|
|
|
<script>
|
|
window.__NEXT_PATH__ = {{ next|tojson }};
|
|
</script>
|
|
<script src="/static/auth.js?v=20260410a"></script>
|
|
</body>
|
|
</html>
|