-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
79 lines (71 loc) · 2.97 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
75
76
77
78
79
<!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" />
<title>Document</title>
<link rel="stylesheet" href="./styles/signup.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/a9dbdcc6e4.js"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styles/common.css">
</head>
<body>
<div id="navbar"></div>
<div class="main">
<div>
<div class="sign">
<button><a href="signup.html">New to Lyst?</a> </button>
<button><a href="login.html">Already a member</a> </button>
</div>
<div><h3>Search thousands of fashion brands and stores all in one place</h3>
<p>We just need a few details from you first.</p></div>
<form id="form">
<label>Email address</label>
<input type="text" id="name" placeholder="Enter your email address" />
<label>Password</label>
<input type="text" id="password" placeholder="Enter your password">
<div id="ss"></div>
<input type="checkbox" name="marketing_emails" id="box">
<label>I would like to hear about products, services, and sales,
including personalized email alerts from Lyst. You can unsubscribe
at any time.</label>
<input type="submit" value="Join Lyst" />
</form>
<p>or</p>
<button><a href=""> Continue With Facebook</a></button>
<button> <a href=""> Continue With Google </a></button>
<div class="down">By creating an account, you consent to Lyst’s<span>
Terms & Conditions.</span>
To learn more about how Lyst uses and protects your personal data,
please read Lyst’s<span> Privacy Policy.</span></div>
</div>
<div class="right">
<div>
<strong>As a Lyst member you can…</strong>
<ul style="list-style:none;">
<li>
<i class="fa-solid fa-bookmark"></i> <span>Save your searches</span></li>
<li>
<i class="fa-solid fa-heart"></i><span>Create a wishlist</span></li>
<li>
<i class="fa-solid fa-bell"></i><span>Get alerts on your items</span></li>
</ul>
</div>
</div>
</div>
</body>
</html>
<script src="./scripts/signup.js"></script>
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"></script>
<script src="./scripts/header.js" type="module"></script>