-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
47 lines (42 loc) · 1.63 KB
/
signup.html
File metadata and controls
47 lines (42 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up</title>
<link rel="stylesheet" href="/signin.css">
</head>
<body>
<a href="/"><img class="logo" src="./images/amazon_logo_dark.png" alt="" width="100px"></a>
<div class="signin-container">
<h1 class="signin-title">
Sign up
</h1>
<h5 class="input-lable">Your name</h5>
<input type="text" placeholder="First and last name">
<h5 class="input-lable">Mobile number or email</h5>
<input type="text">
<h5 class="input-lable">Password</h5>
<input type="password" placeholder="At least 6 characters">
<button>Continue</button>
<p class="signin-condition">By continuing, you agree to Amazon's <span>Condition of use</span> and <span>Privacy Notice.</span></p>
<p class="signip-help">▸ <span>Need help</span></p>
<hr>
<h4>Buying for work?</h4>
<p class="signin-business"> <span> Shop on Amazon Business</span></p>
</div>
<div class="signin-bottom">
<hr>
<p>Have an account?</p>
</div>
<a href="/signin.html"> <button class="signin-signup-btn">Login with Amazon account</button></a>
<footer>
<div class="footer-links">
<a href="#">Conditions of use</a>
<a href="#">Privacy Notice</a>
<a href="#">help</a>
</div>
<p class="footer-copyright">ⓒ 1996-2024, Amazon.com, Inc. or its affliates</p>
</footer>
</body>
</html>