-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhunt99.html
53 lines (51 loc) · 1.92 KB
/
hunt99.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>Task Hunt</title>
<link rel="stylesheet" href="taskhunt.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
<video src="hunt.mp4" autoplay muted loop></video>
<div class="content">
<h1>Task Hunt</h1>
<h3>Now! Be the best hunter</h3>
</div>
</header>
<div class="container">
<!-- Signup Page -->
<div id="signupPage" class="page">
<h2>Sign Up</h2>
<form id="signupForm">
<input type="text" id="signupUsername" placeholder="Username" required>
<input type="password" id="signupPassword" placeholder="Password" required>
<button type="submit">Sign Up</button>
</form>
<p>Already have an account? <a href="#" id="showLogin">Login</a></p>
</div>
<!-- Login Page -->
<div id="loginPage" class="page" style="display:none;">
<h2>Login</h2>
<form id="loginForm">
<input type="text" id="username" placeholder="Username" required>
<input type="password" id="password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
</div>
<!-- Task Page -->
<div id="taskPage" class="page" style="display:none;">
<!-- Your Task Page content -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>