-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (116 loc) · 3.42 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html>
<head>
<title>Cave of Eleven Sages</title>
<script src="/js/aes.js"></script>
<script src="/js/ctf.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
cipheredText = "U2FsdGVkX18A3i0X2EcFV7u1UndGk5IxxDaynMaRVOWlkH3A0sK3VYKnfDVczCQXY9JkVVRmOZbc/1QNVuO4TSmvyyyaU5fC4fGOnrAoFS8=";
</script>
<style>
:root{
--dark: #343e3d;
--theme: #38e4ae;
--light: #ffffff;
}
* {
box-sizing: border-box;
}
body{
padding: 0;
margin: 0;
font-family: monospace, sans-serif;
text-align: center;
background: var(--dark);
color: var(--light);
font-size: 1rem;
}
header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
background: var(--dark);
}
header>h1{
font-size: 1.5rem;
color: var(--theme);
}
main{
display: inline-block;
width: min(100%,640px);
text-align: left;
margin: 80px 0;
padding: 16px;
}
main>img{
width: 100%;
}
footer{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 10px;
background: var(--theme);
text-align: center;
}
form{
display: inline-grid;
width: min(100%,640px);
grid-template-columns: 1fr auto;
grid-gap: 10px;
}
input,input:focus,button{
border: 0;
margin: 0;
outline: none;
background: none;
border-bottom: 2px solid var(--dark);
color: var(--dark);
padding: 5px;
font-size: 1rem;
font-family: monospace, sans-serif;
width: 100%;
}
button{
background: var(--dark);
color: var(--light);
border: none;
padding: 5px 15px;
border-radius: 2px;
}
</style>
</head>
<body>
<header>
<h1>Cave of Eleven Sages</h1>
</header>
<br>
<main>
<p>
After moving past several near death experiences in the
'forest of no-will' while looking for the map to this cave,
you and your friend(s) finally make it to the 'Cave of Eleven Sages'
colloquially known as "Grave of Dollmeroth" - a cave to a rumored forbidden ancient magic that when unleashed by a worthy someone has the power to disrupt the entire universe.
<br><br>
You find yourself standing at the mouth of the cave bewildered by the petroglyphs at the entrance of the cave. You wonder if these carvings could be a warning of some sort, however you muster courage and decide to stand by your convictions.
</p>
<img src="/chant.png">
<p>
You proceed further regardless, knowing that its dangerous. Having risked your life far too many times to obtain this banished map, a mere warning sign was not going to crush your spirit. Your will to obtain the legendary artifact - "The horn of Dollmeroth", which was sealed away by the eleven sages, supersedes any confusion a warning sign could induce. This horn wields the power to resurrect the very epitome of evil that navigates the depths of time and space - "Dollmeroth".
<br><br>
Type "start" in the box below to proceed.
</p>
</main>
<footer>
<form action="javascript:decrypt()">
<input type="text" id="passwordInput" placeholder="(5)" autocomplete="off" required>
<button type="submit">unlock</button>
</form>
</footer>
</body>
<html>