-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (44 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find the Secret Of Mr.C!</title>
<link rel="shortcut icon" href="./assets/images/Minemetero.gif" type="image/gif">
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<h1>Welcome to the Locker Challenge!(Guide)</h1>
<p>Your goal: Find the secret code hidden somewhere on this page to unlock the locker!</p>
<div class="locker">🔒</div>
<p>The locker is locked! Can you find the code to unlock it?</p>
<!-- step 1 -->
<s-card>
<h2>Step 1: Investigate the page</h2>
<p>Right-click anywhere on this page and choose <strong>"Inspect"</strong>, or press <strong>F12</strong> to
open Developer Tools. Use the <strong>Elements</strong> tab to investigate the code.</p>
</s-card>
<!-- step 2 -->
<s-card>
<h2>Step 2: Look for clues</h2>
<p>The code to unlock the locker is hidden within the HTML. Explore the page elements carefully. It might not be
easy to spot, but if you look closely, you'll find parts of the code scattered around.</p>
</s-card>
<!-- step 3 -->
<s-card>
<h2>Step 3: Input the secret code</h2>
<p>Once you've found the code, enter it below to unlock the locker:</p>
<div class="input-section">
<s-text-field id="flagInput" label="Enter the code"></s-text-field>
<s-button onclick="checkFlag()">Submit</s-button>
</div>
</s-card>
<p class="ITSHALLNEVERBEFOUND">The code is hidden in secret locations around the page. Keep searching!</p>
<img src="assets/images/1.jpg" alt="" class="ITSHALLNEVERBEFOUND">
<footer>
<p>Good luck! Can you unlock the locker and find the hidden message?</p>
</footer>
<script src="https://unpkg.com/[email protected]/dist/sober.min.js"></script>
<script defer src="./assets/js/script.js"></script>
</body>
</html>