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 pathindex.html
More file actions
43 lines (41 loc) · 1.87 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.87 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
<!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="search-container">
<div class="search-icon">🔍</div>
<h1>欢迎使用 Codemao UserDB</h1>
<p>用昵称查询编程猫用户</p>
<form id="search-form" action="search.html" method="GET">
<input type="text" id="search-input" name="q" placeholder="输入用户昵称以搜索" required>
<button type="submit" class="search-btn">搜索</button>
</form>
<br>
<div class="stats"></div>
<div class="bot-info">Codemao UserDB已接入到柠檬酸钠Bot,试试给柠檬酸钠发送: /查昵称</div>
<div class="bot-info">想在社区快速使用?<a href="https://github.com/hachimlab/UserDB/raw/refs/heads/main/codemao-userdb.user.js" style="text-decoration:none;">点击安装社区集成油猴脚本</a></div><br>
<div class="bot-info">爱来自HachimLab,更多技术信息请访问GitHub仓库</div>
</div>
</main>
<script src="js/script.js"></script>
</body>
</html>