-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<title>Quiz Game</title>
</head>
<body>
<div class="container active" id="container">
<div class="form-container sign-up">
<form>
<h1>Create Account</h1>
<input type="text" placeholder="Name" class="sign-up-name">
<input type="email" placeholder="Email" class="sign-up-email">
<input type="password" placeholder="Password" class="sign-up-password">
<button class="sign-up-btn">Sign Up</button>
</form>
</div>
<div class="form-container sign-in">
<form>
<h1>Use your email password</h1>
<input type="email" placeholder="Email" class="login-email">
<input type="password" placeholder="Password" class="login-password">
<a href="#">Forgot Password?</a>
<button class="login-btn">Sign Up</button>
</form>
</div>
<div class="toggle-container">
<div class="toggle">
<div class="toggle-panel toggle-left">
<h1>Welcome !</h1>
<p>Enter your personal details to use all of site features</p>
<button class="hidden" id="login">Sign In</button>
</div>
<div class="toggle-panel toggle-right">
<h1>Hello Friends!</h1>
<p>Register with your personal details to use all of site features</p>
<button class="hidden" id="register">Sign Up</button>
</div>
</div>
</div>
</div>
<script src="scrpit.js"></script>
</body>
</html>