-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreferrer-error.html
75 lines (66 loc) · 1.99 KB
/
referrer-error.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Referrer Error - Frogs</title>
<style>
body {
font-family: 'sans-serif', sans-serif;
background-color: #DFF7DF;
/* Light green background */
color: #2C6B2F;
/* Frog-like dark green */
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
.error-container {
border: 2px solid #9CDA74;
/* Lighter frog color */
border-radius: 12px;
padding: 30px;
background-color: #A6EBAF;
/* Frog-themed light green */
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
width: 600px;
}
h1 {
font-size: 2.5rem;
font-weight: bold;
color: #537C3F;
/* Deep frog green */
margin: 0;
}
p {
font-size: 1.5rem;
margin: 20px 0;
}
.frog-emoji {
font-size: 2rem;
display: block;
}
a {
color: #7F944A;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="error-container">
<h1>Access to the lilypad "unknown07724.github.io" denied</h1>
<p class="frog-emoji">🐸</p>
<p>Oh no! You're not allowed to hop on this lilypad!</p>
<p>king frogius the 2nd says no entry from your location!</p>
<p>If you think this is a mistake, croak us a message at <a href="mailto:trash1.junk99@gmail.com">my email</a> or unknown_07724 on discord and unknown07724 on every other lilypad.</p>
<p class="frog-emoji">🐸</p>
</div>
</body>
</html>