-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./assets/hack_ZYO_icon.ico">
<title>HackMan</title>
<link rel="stylesheet" href="./CSS/index.css">
</head>
<body>
<header>
<div id="ip-address">Fetching IP...</div>
</header>
<div class="main">
<h1>Welcome to HackMan</h1>
<div class="lines">
<div></div>
<div></div>
<div></div>
</div>
<p>Solve the math problem to get the access code:</p>
<p id="math-problem"></p>
<!-- Form for solving the problem -->
<form id="math-form">
<input type="number" id="user-answer" placeholder="Enter your answer" required>
<button type="submit">Submit Answer</button>
</form>
<!-- Form for entering the access code (initially hidden) -->
<form id="access-form" style="display: none;">
<input type="password" id="access-code" placeholder="Enter the access code" required>
<button type="submit">Submit Code</button>
</form>
<p id="error-message"></p>
<div class="falling-numbers">
<div class="row" id="row1"></div>
<div class="row" id="row2"></div>
<div class="row" id="row3"></div>
<div class="row" id="row4"></div>
<div class="row" id="row5"></div>
</div>
</div>
<footer>
<p>© 2024 HackMan. All rights reserved.</p>
<p>
<strong>Follow us:</strong>
<a href="https://x.com/griffinssssss">Twitter</a> |
<a href="https://www.facebook.com/SirGriffinSir/">Facebook</a> |
<a href="https://www.linkedin.com/in/kabelo-samkelo-aa654931a/">LinkedIn</a>
</p>
</footer>
<script src="./JS/IP.js"></script>
<script src="./JS/index.js"></script>
<script src="./JS/mathProblem.js"></script>
</body>
</html>