-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (42 loc) · 1.54 KB
/
index.html
File metadata and controls
51 lines (42 loc) · 1.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MindMaster Login</title>
<link rel="stylesheet" href="/.style/style.css">
</head>
<body>
<header>
<h2><a href="index.html" style="text-decoration: none; color: inherit;">MindMaster Quiz</a></h2>
<h3>Your companion in mental wellness.</h3>
</header>
<main class="login-main">
<section class="login-box">
<h2>Login</h2>
<form id="login-form" novalidate>
<label for="username">Username:</label>
<input type="text" id="username" placeholder="Enter your name" required>
<label for="password">Password:</label>
<input type="password" id="password" placeholder="Enter your password">
<div class="checkbox-group">
<label>
<input type="checkbox" id="show-password"> Show Password
</label>
<label>
<input type="checkbox" id="remember-password"> Remember Password
</label>
</div>
<button type="submit" class="primary-btn">Login</button>
</form>
<button id="reset-data" class="secondary-btn">Reset All Users</button>
</section>
</main>
<footer>
<p>Creators</p>
<p>Alejandro | Antwaun | Saira | Rolando</p>
<p>©2025 MindMaster. All rights reserved.</p>
</footer>
<script type="module" src="./auth.js"></script>
</body>
</html>