-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.html
58 lines (54 loc) · 2.66 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
<!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/loginstyle.css">
<link rel="stylesheet" href="./styles/navbar.css" />
</head>
<body>
<div id="nav"></div>
<div id="container">
<div id="sign_in">
<div id="title">
<img onclick="window.location.href='index.html'" id="titleimg" src="https://images-na.ssl-images-amazon.com/images/G/01/Shopbop/p/pcs/shopbop/media/3/images/logos/AUI_desktop_SB_rebrand_1-0.png._CB485948808_.png">
</div>
<div id="form">
<form class="box" >
<p id="p1">Create account</p>
<p id="p2">Your name</p>
<input type="text" placeholder="" id="username" >
<p id="p2">Email</p>
<input type="text" name="" placeholder="" id="email" >
<p id="p2">Password</p>
<input type="text" name="" placeholder="At least 6 characters" id="pswd">
<p id="p3">Passwords must be at least 6 characters.</p>
<p id="p2">Re-enter password</p>
<input type="text" name="" placeholder="" id="rpswd"> <br>
<input type="submit" value="Create Account" placeholder="" id="Login" > <br>
<div id="terms" style="margin-top: 25px;">
<label id="p3"> By creating an account, you agree to our</label><span style="font-weight: 400; font-size: 14px; line-height: 19px;" id="redText"> Privacy Notice </span> <br>
<label id="p3" id="redText"> Conditions of Use</span> <br>
</div>
<p id="p4">Other resister options</p>
<div id="img1"><img id="Amazon" src="https://images-na.ssl-images-amazon.com/images/G/01/Shopbop/media/images/authportal/lwa_209x48._CB485945402_.png"></div>
<div id="terms" style="margin-top: 20px;">
<label id="p3">Already have an account?</label><span id="p3" ><a id="redText" href="login.html">Sign in</a></span> <br>
</div>
</form>
</div>
</div>
<div id="foot" style="font-weight: 400; font-size: 12px; line-height: 20px;">
<div id="redText" style="line-height: 35px">Contact Us</div>
<div style="display: flex;">
<div> © 1999-2020 BOP LLC. All Rights Reserved. </div><span id="redText" style="margin-left: 5px;"> Privacy Notice Conditions of Use</span>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./src/signup.js">
</script>