-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
203 lines (180 loc) · 7.36 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html>
<head>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- others -->
<meta charset="utf-8" />
<title>MICS Lab - Summer 2024</title>
<meta name="description" content="Enigmas for the MICS 2024 Summer event">
<meta name="author" content="Paul Dubois">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h3>MICS Lab</h3>
<h1>Summer 2024</h1>
<h2>Enigmas Race !</h2>
<h3><a href="enigmas">Enigmas Statements</a></h3>
</header>
<main>
<div class="enigma" id="enigma0">
<div class="title">
<h4>Enigma 1:</h4>
<p>Fruits Equations</p>
</div>
<div class="input">
<label for="password0">Answer:</label>
<input type="password0" id="password0" name="password0" />
<button type="button" onclick="checkPassword0()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma0-check">
<img src="not_checked.svg" class="not-finished" id="enigma0-no-check">
</div>
</div>
<div class="enigma" id="enigma1">
<div class="title">
<h4>Enigma 2:</h4>
<p>Animals Equations</p>
</div>
<div class="input">
<label for="password1">Answer:</label>
<input type="password1" id="password1" name="password1" />
<button type="button" onclick="checkPassword1()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma1-check">
<img src="not_checked.svg" class="not-finished" id="enigma1-no-check">
</div>
</div>
<div class="enigma" id="enigma2">
<div class="title">
<h4>Enigma 3:</h4>
<p>Following Number</p>
</div>
<div class="input">
<label for="password2">Answer:</label>
<input type="password2" id="password2" name="password2" />
<button type="button" onclick="checkPassword2()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma2-check">
<img src="not_checked.svg" class="not-finished" id="enigma2-no-check">
</div>
</div>
<div class="enigma" id="enigma3">
<div class="title">
<h4>Enigma 4:</h4>
<p>The children of Véronique</p>
</div>
<div class="input">
<label for="password3">Answer:</label>
<input type="password3" id="password3" name="password3" />
<button type="button" onclick="checkPassword3()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma3-check">
<img src="not_checked.svg" class="not-finished" id="enigma3-no-check">
</div>
</div>
<div class="enigma" id="enigma4">
<div class="title">
<h4>Enigma 5:</h4>
<p>The reindeers of CentraleSupélec</p>
</div>
<div class="input">
<label for="password4">Answer:</label>
<input type="password4" id="password4" name="password4" />
<button type="button" onclick="checkPassword4()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma4-check">
<img src="not_checked.svg" class="not-finished" id="enigma4-no-check">
</div>
</div>
<div class="enigma" id="enigma5">
<div class="title">
<h4>Enigma 6:</h4>
<p>Smallest number of weight 25</p>
</div>
<div class="input">
<label for="password5">Answer:</label>
<input type="password5" id="password5" name="password5" />
<button type="button" onclick="checkPassword5()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma5-check">
<img src="not_checked.svg" class="not-finished" id="enigma5-no-check">
</div>
</div>
<div class="enigma" id="enigma6">
<div class="title">
<h4>Enigma 7:</h4>
<p>Decoding</p>
</div>
<div class="input">
<label for="password6">Answer:</label>
<input type="password6" id="password6" name="password6" />
<button type="button" onclick="checkPassword6()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma6-check">
<img src="not_checked.svg" class="not-finished" id="enigma6-no-check">
</div>
</div>
<div class="enigma" id="enigma7">
<div class="title">
<h4>Enigma 8:</h4>
<p>Treasure Safe</p>
</div>
<div class="input">
<label for="password7">Answer:</label>
<input type="password7" id="password7" name="password7" />
<button type="button" onclick="checkPassword7()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma7-check">
<img src="not_checked.svg" class="not-finished" id="enigma7-no-check">
</div>
</div>
<div class="enigma" id="enigma8">
<div class="title">
<h4>Enigma 9:</h4>
<p>Juggler of Nuit Des Troubadours</p>
</div>
<div class="input">
<label for="password8">Answer:</label>
<input type="password8" id="password8" name="password8" />
<button type="button" onclick="checkPassword8()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma8-check">
<img src="not_checked.svg" class="not-finished" id="enigma8-no-check">
</div>
</div>
<div class="enigma" id="enigma9">
<div class="title">
<h4>Enigma 10:</h4>
<p>Beard hype, or not?</p>
</div>
<div class="input">
<label for="password9">Answer:</label>
<input type="password9" id="password9" name="password9" />
<button type="button" onclick="checkPassword9()">Submit</button>
</div>
<div class="status">
<img src="checked.svg" class="finished" id="enigma9-check">
<img src="not_checked.svg" class="not-finished" id="enigma9-no-check">
</div>
</div>
<p id="finish-code"></p>
</main>
<footer>
<p>© 2023 MICS Lab</p>
</footer>
</body>
<script src="hash.js"></script>
<script src="finish_script.js"></script>
<script src="script.js"></script>
</html>