-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (53 loc) · 1.71 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ASoulCnki OAuth</title>
<link rel="stylesheet" href="/src/css/index.css" />
</head>
<body>
<div class="cursor-default flex flex-col items-center" id="main-content">
<img src="/img/logo.png" class="h-100px mt-3 py-3" />
<p class="text-xl">枝网OAuth</p>
<div id="board">
<span>
向机器人账号
<a
target="_blank"
class="cursor-pointer font-bold text-blue-500"
onclick="openChat()"
>
[点击这里跳转]
</a>
发送私信
</span>
<p id="token-code">
<span id="token"></span><span id="copy" onclick="copy()">复制</span>
</p>
以向我们证实您的身份
<p class="text-sm py-3">
遇到问题? 点此<span
class="cursor-pointer px-1 text-blue-600"
onclick="flushToken()"
>刷新token</span
>
</p>
</div>
<button id="submit-button" class="btn">我已发送</button>
<div class="my-4">
<p id="bottom-text">
验证码在两分钟内有效<br />
授权后表明您已同意
<a href="" target="_blank" class="text-blue-500">服务协议 </a>
<br />
<b class="text-sm text-gray-500 dark:text-gray-400">
如果您无法正常登陆<br />请不要频繁向机器人账号发送验证私信</b
>
</p>
</div>
<script type="module" src="/src/js/main.js"></script>
<script src="./registerSW.js"></script>
</div>
</body>
</html>