-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
executable file
·74 lines (58 loc) · 2.08 KB
/
SignUp.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
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Drop Down Game</title>
<link rel="stylesheet" type="text/css" href="css/SignUp.css"/>
</head>
<body>
<div class="container">
<ul class="tab-group">
<li class="sign-up-tab"><a href="#sign-up"> SIGNUP </a></li>
<li class="login-tab"><a href="#login"> LOGIN </a></li>
<li class="reset-tab"><a href="#"> RESET </a></li>
</ul>
<div class="tab-content">
<div id="sign-up" >
<h1>Sign Up for Free</h1>
<form action="/" method="post">
<div class="top-row" >
<div id="firstName" class="field-wrap">
<label>First Name<span class="req">*</span></label>
<input type="text" required autocomplete="off">
</div>
<div id="lastName" class="field-wrap">
<label>Last Name<span class="req">*</span></label>
<input type="text" required autocomplete="off">
</div>
</div>
<div class="field-wrap">
<label>Email Address<span class="req">*</span></label>
<input type="email" required autocomplete="off">
</div>
<div class="field-wrap">
<label>Set A Password<span class="req">*</span></label>
<input type="password" required autocomplete="off">
</div>
<button type="submit" class="botton">Get Started</button>
</form>
</div> <!------------- sign-up div end here ----------------->
<div id="login">
<h1>Welcome back!</h1>
<form action="/" method="post">
<div class="field-wrap">
<label class="active">Email Address<span class="req">*</span></label>
<input type="email" required autocomplete="off">
</div>
<div class="field-wrap">
<label>Password<span class="req">*</span></label>
<input type="password" required autocomplete="off">
</div>
<p class="forgot"><a href="#">Forgot Password?</a></p>
<button type="" class="button">Log In</button>
</form>
</div> <!------------- login div end here ----------------->
<div id="reset"></div> <!------------- reset div end here ----------------->
</div>
</div>
</body>
</html>