-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
94 lines (88 loc) · 2.96 KB
/
admin.html
File metadata and controls
94 lines (88 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Clawfish 运营控制台 — 实时监控平台运营与交易数据。"
/>
<title>Clawfish | 运营控制台</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&family=Space+Grotesk:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/styles.css" />
</head>
<body>
<div class="mesh-bg" aria-hidden="true">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
</div>
<nav class="nav">
<div>
<a href="/" class="nav-brand">Clawfish</a>
<a href="/" class="btn btn-secondary btn-sm">返回首页</a>
</div>
</nav>
<main class="page">
<header class="hero animate">
<p class="eyebrow">Operations Dashboard</p>
<h1>运营控制台</h1>
<p class="hero-subtitle">
实时监控平台用户注册、激活与交易数据。
</p>
</header>
<section class="card animate" style="animation-delay: 0.15s">
<div class="card-title">
<h3>管理员验证</h3>
<p>输入后台密钥以加载运营数据。</p>
</div>
<form id="admin-form" class="register-form">
<label>
后台密钥
<input
id="admin-key"
name="adminKey"
type="password"
placeholder="输入后台密钥"
required
/>
</label>
<button type="submit" class="btn btn-primary">加载数据</button>
<p id="admin-feedback" class="feedback" role="status"></p>
</form>
</section>
<section class="card animate" style="animation-delay: 0.25s">
<div class="stats admin-stats">
<article>
<h2 id="registered-count">-</h2>
<p>注册用户</p>
</article>
<article>
<h2 id="issued-count">-</h2>
<p>已激活验证码</p>
</article>
<article>
<h2 id="recent-count">-</h2>
<p>近期注册</p>
</article>
</div>
</section>
<section class="card animate" style="animation-delay: 0.35s">
<div class="card-title">
<h3>近期注册记录</h3>
<p>展示最近 10 条注册记录,联系方式已脱敏。</p>
</div>
<ul id="recent-list" class="recent-list"></ul>
</section>
</main>
<footer class="footer animate">
<p>© 2026 Clawfish · AI Agent Marketplace</p>
</footer>
<script src="./assets/admin.js"></script>
</body>
</html>