-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (86 loc) · 3.46 KB
/
Copy pathindex.html
File metadata and controls
86 lines (86 loc) · 3.46 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>XiuWei Dashboard</title>
<link rel="stylesheet" href="src/assets/index.css" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body class="blue">
<noscript>
<div
style="
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: oklch(90.1% 0.058 230.902);
padding: 2rem;
box-sizing: border-box;
"
>
<div style="max-width: 600px; text-align: center">
<h1
style="
font-size: 2.5rem;
font-weight: bold;
color: oklch(40% 0.15 254.624);
margin-bottom: 1.5rem;
"
>
我们无法运行这个网页。<br />We cannot run this page.
</h1>
<p
style="
font-size: 1.125rem;
color: oklch(50% 0.12 254.624);
margin-bottom: 2rem;
line-height: 1.6;
"
>
该网页必须依赖 JavaScript 运行,您似乎将其禁用了。<br />This
page requires JavaScript to run, which appears to be
disabled.
</p>
<div
style="
font-size: 1rem;
color: oklch(45% 0.13 254.624);
line-height: 1.8;
"
>
<p style="margin-bottom: 0.5rem">
中文用户请参考:
<a
href="https://www.bing.com/search?q=%E6%B5%8F%E8%A7%88%E5%99%A8%E5%90%AF%E7%94%A8JavaScript"
style="
color: oklch(60% 0.18 254.624);
text-decoration: underline;
"
target="_blank"
>如何启用 JavaScript</a
>
</p>
<p>
English users:
<a
href="https://www.google.com/search?q=how+to+enable+browser+javascript"
style="
color: oklch(60% 0.18 254.624);
text-decoration: underline;
"
target="_blank"
>How to enable JavaScript</a
>
</p>
</div>
</div>
</div>
</noscript>
<script type="module" src="src/assets/index.js"></script>
<div id="app" class="main"></div>
</body>
</html>