-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
66 lines (58 loc) · 2.33 KB
/
signup.html
File metadata and controls
66 lines (58 loc) · 2.33 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="signup.css">
<title>BetSave Login</title>
</head>
<body>
<div class="split-screen">
<div class="left">
<section class="copy">
<h1>A Better Way to Save and Still Bet</h1>
<p>Bet without losing a dime. Register Now to begin</p>
</section>
</div>
<div class="right">
<form action="">
<section class="copy">
<h2>Sign Up</h2>
<div class="login_container">
<p>Already have an Account? <a href="#"><strong>Log In</strong></a></p>
</div>
</section>
<div class="input-container name">
<label for="fname">First Name</label>
<input name="fname" id="fname" type="text">
</div>
<div class="input-container name">
<label for="email">Email</label>
<input name="email" id="email" type="email">
</div>
<div class="input-container name">
<label for="fname">Password</label>
<input name="password" id="password" type="password"
placeholder="Make sure it is at least 6 chararcters">
<i class="fa fa-eye-slash"></i>
</div>
<div class="input-container cta">
<label for="" class="checkbox-container">
<input type="checkbox">
<span class="checkmark"></span>
Sign Up for Email Update
</label>
</div>
<button class="signup-btn" type="submit">
Sign Up
</button>
<section class="copy legal">
<p class="small"> <span class="small">By Continuing you agree to accept <a href="#">Privacy
Policy</a> <a href="#">Terms and Conditions</a></span></p>
</section>
</form>
</div>
</div>
</body>
</html>