-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
67 lines (67 loc) · 2.43 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Login & Registration Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<input type="checkbox" id="check">
<div class="login form">
<header>Login</header>
<form action="#">
<input type="text" id='inUsr' placeholder="Enter your email">
<input type="password" id="inPass" placeholder="Enter your password">
<span class="signup">
<a href="#" id="forgotLabel">Forgot password?</a>
</span>
<input type="button" class="button loginbtn" value="Login">
</form>
<div class="signup">
<span class="signup">Don't have an account?
<a href="#" id="signupLabel">Signup</a>
</span>
</div>
</div>
<div class="registration form">
<header>Signup</header>
<form action="#">
<input type="text" id="name" placeholder="Enter your name">
<input type="text" id='username' placeholder="Enter your username">
<input type="text" id='email' placeholder="Enter your email">
<input type="password" id='password' placeholder="Create a password">
<input type="button" class="button signupbtn" value="Signup">
</form>
<div class="signup">
<span class="signup">Already have an account?
<a href="#" id="loginLabel">Login</a>
</span>
</div>
</div>
<div class="forgot form" >
<header>Forgot Password</header>
<form action="#">
<input type="text" id='forgotinp' placeholder="Enter your email">
<input type="button" class="button forgotbtn" value="Submit">
</form>
<div class="signup">
<span class="signup">Don't have an account?
<a href="#" id="signupLabel">Signup</a>
</span>
</div>
<div class="signup">
<span class="signup">Already have an account?
<a href="#" id="loginLabel">Login</a>
</span>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-firestore.js"></script>
<script src="page0.js" type="module"></script>
</body>
</html>