家谱现有接口调试50%

This commit is contained in:
rain
2026-07-09 17:29:25 +08:00
commit 6050508144
262 changed files with 63354 additions and 0 deletions
+70
View File
@@ -0,0 +1,70 @@
<!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="public/layui/css/layui.css" />
<link rel="stylesheet" href="public/css/public.css" />
<link rel="stylesheet" href="public/tac/css/tac.css" />
<link rel="stylesheet" href="public/css/register.css" />
</head>
<body class="page-register">
<main class="auth-layout auth-scenic-layout">
<a class="brand auth-page-brand" href="index.html"
><img class="brand-logo" src="public/images/logo.png" alt="我们的家谱,代代相传" /></a
>
<section
class="card form-card auth-card"
aria-labelledby="register-title"
>
<div class="eyebrow">Create Account</div>
<h1 id="register-title">注册账号</h1>
<p class="lead">注册后即可创建家谱或通过邀请码加入家族。</p>
<form class="form-grid" data-auth-form="register" data-captcha-scene="WEB_H5_REGISTER" data-success-url="create-genealogy.html">
<input
class="input"
name="phone"
type="tel"
inputmode="numeric"
autocomplete="tel"
maxlength="11"
placeholder="手机号"
/>
<input
class="input"
name="nickName"
autocomplete="nickname"
placeholder="昵称(选填)"
/>
<input
class="input"
name="password"
type="password"
autocomplete="new-password"
placeholder="设置密码"
/>
<input type="hidden" name="validToken" />
<button class="btn primary" type="submit">注册并创建家谱</button>
<div class="auth-links">
<a href="login.html">已有账号,去登录</a>
</div>
</form>
</section>
</main>
<!-- 滑动验证弹窗由 captcha-pages.js 按需挂载到页面级容器,避免挤占表单布局 -->
<div class="auth-captcha-modal" data-captcha-box aria-live="polite"></div>
<script src="public/js/md5.js"></script>
<script src="config.js"></script>
<script src="utils/StorageUtil.js"></script>
<script src="utils/FormUtil.js"></script>
<script src="utils/RequestUtil.js"></script>
<script src="utils/MessageUtil.js"></script>
<script src="public/js/api-client.js"></script>
<script src="public/layui/layui.js"></script>
<script src="public/tac/js/tac.min.js"></script>
<script src="public/js/captcha-pages.js"></script>
<script src="public/js/auth-pages.js"></script>
<script src="public/js/page-effects.js"></script>
</body>
</html>