forked from DogeNetwork/dogeub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckfailed.html
More file actions
43 lines (42 loc) · 994 Bytes
/
Checkfailed.html
File metadata and controls
43 lines (42 loc) · 994 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
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en" thinksproutedu-theme="auto">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Denied</title>
<style>
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-family: sans-serif;
background: #e1e3e6;
color: #1f2937;
text-align: center;
}
a button {
background: #2563eb;
color: white;
padding: 0.5rem 1rem;
border: none;
cursor: pointer;
}
a button:hover { background: #1d4ed8; }
</style>
</head>
<body>
<div>
<h1>Access Denied</h1>
<p>You don't have access to this website. Please stay on task.</p>
<a href="/" id="btn"><button>Refresh</button></a>
</div>
<script>
if(!localStorage.auth && new URL(document.all.btn.href).password){
localStorage.auth=1;
location.reload();
}
</script>
</body>
</html>