-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
102 lines (96 loc) · 2.97 KB
/
signup.html
File metadata and controls
102 lines (96 loc) · 2.97 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!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" />
<script
src="https://kit.fontawesome.com/ef15a76fa0.js"
crossorigin="anonymous"
></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<title>Document</title>
<link rel="stylesheet" href="./style/signup.css">
<link rel="stylesheet" href="./style/nav.css">
<link rel="stylesheet" href="./style/footer.css">
<link rel="stylesheet" href="./style/men.css">
</head>
<body>
<div id="navbar"></div>
<div id="container">
<div id="container1">
<img />
<h2>Create your Farfetch account</h2>
<div id="id2">
<div>
<input id="name" class="id" type="text" required placeholder="First name" />
</div>
<div class="id">
<input id="lname" class="id" type="text" required placeholder="Last name" />
</div>
<div class="id">
<input
required
id="email"
class="id"
type="email"
placeholder="Email address"
/>
</div>
<div class="id">
<input
required
id="pass"
class="id"
type="password"
placeholder="Creat a password"
/>
</div>
</div>
</div>
<div id="container2">
<h5>Your password must include the following:</h5>
<p>
8-100 characters:<br />
Upper & lowercase letters<br />
At least one number or special character
</p>
</div>
<div id="container3">
<input type="checkbox" />
Keep me signed in
<p>
Uncheck if using a public device
<a href="">More</a>
</p>
<input type="checkbox" />Send me emails about new arrivals, hot
items,daily<br />
savings, & more.
<p>
By clicking Create Account, you acknowledge you have<br />
read and agreed to our <a href="">Term of Use</a> and
<a href="">Privacy Policy</a>
</p>
</div>
<div id="container4">
<button class="id3" id="create">Create Account</button><br />
<p id="cen">Already have an account</p>
<button class="id3" id="center1">Sign in</button>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
import {navbar,footer} from "./components/secondpage.js"
let nav = document.getElementById("navbar")
let foot = document.getElementById("footer")
nav.innerHTML =navbar();
foot.innerHTML =footer()
</script>
<script src="./script/signup.js"></script>