This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit.html
More file actions
45 lines (43 loc) · 1.75 KB
/
submit.html
File metadata and controls
45 lines (43 loc) · 1.75 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodemaoUserDB - 提交账号</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="navbar-left">
<a href="index.html" class="logo">Codemao UserDB</a>
</div>
<div class="navbar-right">
<a href="index.html" class="nav-link active">查询</a>
<a href="submit.html" class="nav-link">提交账号</a>
<a href="https://github.com/hachimlab/UserDB" class="nav-link">GitHub</a>
<a href="https://udbapi.hachimlab.top/" class="nav-link">API</a>
</div>
</nav>
</header>
<main class="main-content">
<div class="submit-container">
<div class="submit-icon">➕</div>
<h1>提交/更新用户信息</h1>
<form id="submit-form">
<input type="text" id="submit-input" placeholder="输入用户ID或训练师ID以提交/更新" required>
<div style="display: flex; gap: 1rem; justify-content: center;">
<button type="submit" class="submit-btn">提交</button>
<button type="button" class="update-btn">更新</button>
</div>
</form>
<div class="submit-info">
可以在这里提交 Codemao UserDB 未收录的用户<br>
将不会收录疑似EDU批量注册的账号<br>
Codemao UserDB 会定期清理疑似EDU批量注册的账号
</div>
</div>
</main>
<script src="js/script.js"></script>
</body>
</html>