-
Notifications
You must be signed in to change notification settings - Fork 13
/
turnstile.html
38 lines (34 loc) · 1.17 KB
/
turnstile.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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<title data-i18n="turnstile_title">Turnstile 验证</title>
<link rel="icon" href="/icons/turnstile.svg" type="image/svg+xml">
<link rel="stylesheet" href="/CSS/turnstile.css">
<script src="/scripts/js-yaml.js" defer></script>
<script type="module" src="/scripts/i18n.js" defer></script>
<script type="module" src="/scripts/turnstile.js" defer></script>
</head>
<body>
<h1 data-i18n="turnstile_heading" style="color: white;">在继续前,需要验证你是否为人类</h1>
<div id="turnstile-container"></div>
<div id="noscript-message" data-i18n="turnstile_noscript_message">
您的浏览器禁用了 JavaScript,请启用 JavaScript 以继续。
</div>
<noscript>
<style>
#noscript-message {
display: block;
}
#turnstile-container,
h1 {
display: none;
}
</style>
</noscript>
</body>
</html>