152228d41f
- 页面直接引用 local.js 设置 SOON_DEPLOY_CONFIG,移除 deploy-config - Docker sync-config 生成 local.js;更新 README 与 agent-core 说明 - 模板库自动扫描 .soon;新增后端部署/种子/排查脚本 - 完善支付配置、订阅弹窗与后台支付管理页 Co-authored-by: Cursor <cursoragent@cursor.com>
51 lines
2.1 KiB
HTML
51 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="SoonDesign 管理后台登录">
|
|
<link rel="icon" href="../../assets/images/favicon.ico">
|
|
<title>管理后台登录 · SoonDesign</title>
|
|
<link rel="stylesheet" href="../../assets/css/auth.css">
|
|
<link rel="stylesheet" href="../../vendor/layui/css/layui.css">
|
|
<link rel="stylesheet" href="../../assets/css/layer-soon.css">
|
|
</head>
|
|
<body class="soon-admin-page">
|
|
<header class="soon-portal-topbar soon-auth-topbar">
|
|
<div class="soon-portal-topbar__brand">
|
|
<span>SoonDesign Admin</span>
|
|
</div>
|
|
</header>
|
|
<div class="soon-auth-page">
|
|
<div class="soon-auth-shell">
|
|
<div class="soon-auth-brand">
|
|
<img class="soon-auth-brand__logo" src="../../assets/images/logo.png" alt="SoonDesign">
|
|
<h1>管理后台</h1>
|
|
<p>仅限管理员账号登录</p>
|
|
</div>
|
|
<div class="soon-auth-form">
|
|
<h2>管理员登录</h2>
|
|
<p class="soon-auth-form__subtitle">请使用管理员邮箱与密码</p>
|
|
<form id="loginForm">
|
|
<div class="soon-input-wrap">
|
|
<input type="email" name="email" required class="soon-input" placeholder="邮箱" id="email" autocomplete="email">
|
|
</div>
|
|
<div class="soon-input-wrap">
|
|
<input type="password" name="password" required class="soon-input" placeholder="密码" id="password" autocomplete="current-password">
|
|
<button type="button" class="soon-pwd-toggle" id="pwdToggle" aria-label="显示或隐藏密码">显示</button>
|
|
</div>
|
|
<div class="soon-auth-error-box" id="loginError" role="alert"></div>
|
|
<button type="submit" class="soon-btn soon-btn--block">登录</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="../../config/local.js"></script>
|
|
<script src="../../js/common/auth-redirect.js"></script>
|
|
<script src="../../vendor/layui/layui.js"></script>
|
|
<script src="../../js/common/soon-toast.js"></script>
|
|
<script src="assets/js/login.js"></script>
|
|
</body>
|
|
</html>
|