-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (43 loc) · 1.38 KB
/
index.html
File metadata and controls
45 lines (43 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swipe Login & Signup Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- Left Panel -->
<div class="left-panel">
<div class="content">
<h2 id="leftPanelText">New here? Create an account!</h2>
<p id="leftPanelMessage">Sign up and join us today for an amazing experience!</p>
<button id="toggleFormBtn">Sign Up</button>
</div>
</div>
<!-- Right Panel (Login) -->
<div class="right-panel">
<div class="login-form">
<form id="loginForm">
<h2>Login</h2>
<input type="text" placeholder="Username" required>
<input type="password" placeholder="Password" required>
<button type="submit">Sign In</button>
<p><a href="#">Forgot Password?</a></p>
</form>
</div>
<div class="signup-form">
<form id="signupForm">
<h2>Sign Up</h2>
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Password" required>
<button type="submit">Create Account</button>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>