-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocked.html
More file actions
35 lines (35 loc) · 868 Bytes
/
Copy pathblocked.html
File metadata and controls
35 lines (35 loc) · 868 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>访问被阻止</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f8f9fa;
}
.blocked-container {
text-align: center;
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 { color: #dc3545; }
p { color: #666; font-size: 16px;}
</style>
</head>
<body>
<div class="blocked-container">
<h1>访问被阻止</h1>
<p>此网站不在您的白名单中。请点击白名单限制插件将网址添加到白名单以访问它</p>
<p>网址: <strong id="blockedSite"></strong></p>
</div>
</body>
<script src="blocked.js"></script>
</html>