-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
54 lines (53 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Login</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Login Page</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="container" id="container">
<div class="form-container sign-up">
<form>
<h1>Create Account</h1>
<span>Tell us who you are</span>
<input id="signup-name" type="text" placeholder="Name" />
<input id="signup-email" type="email" placeholder="Email" />
<input id="signup-passwd" type="password" placeholder="Password" />
<button id="submit-btn-su">Sign Up</button>
</form>
</div>
<div class="form-container sign-in">
<form>
<h1>Sign In</h1>
<span>Use your email and password</span>
<input id="login-email" type="email" placeholder="Email" />
<input id="login-passwd" type="password" placeholder="Password" />
<a href="#">Forgot Your Password?</a>
<button id="submit-btn">Sign In</button>
</form>
</div>
<div class="toggle-container">
<div class="toggle">
<div class="toggle-panel toggle-left">
<h1>Get Started</h1>
<p>
Register with 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>Hop Back In</h1>
<p>Sign in to your account to get the lights going</p>
<button class="hidden" id="register">Sign Up</button>
</div>
</div>
</div>
</div>
<script type="module" src="login.js"></script>
</body>
</html>