forked from bhaveshpatilce-pixel/microproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.html
More file actions
42 lines (38 loc) · 1.37 KB
/
auth.html
File metadata and controls
42 lines (38 loc) · 1.37 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
main
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Mini LMS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="auth-container">
<div class="auth-card">
<h2>Login to Mini LMS</h2>
<form id="loginForm">
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="#" onclick="showRegister()">Register here</a></p>
</div>
</div>
<!-- Register Form (hidden initially) -->
<div class="auth-container" id="registerForm" style="display: none;">
<div class="auth-card">
<h2>Create Account</h2>
<form id="registerForm">
<input type="text" placeholder="Full Name" required>
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Password" required>
<button type="submit">Register</button>
</form>
<p>Already have an account? <a href="#" onclick="showLogin()">Login here</a></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
main