-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 2.14 KB
/
index.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
<!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>Amazon Sign-In</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="https://images-na.ssl-images-amazon.com/images/G/01/sm/auth-portal/gaming-desktop-banner._CB409546984_.svg" alt="authentication-portal-hero-banner">
</header>
<div class="sign-in-container">
<h1>Sign-in to Amazon</h1>
<p>Your Amazon Prime membership includes Prime Gaming benefits.</p>
<label class="a-form-label" for="ap_email">Email or mobile phone number</label>
<input id="ap_email" type="email" class="a-input-text">
<div class="pw-section">
<div class="pw-span">
<label class="a-form-label" for="ap_password">Password</label>
<a id="fp-link" class="a-link" href="/">Forgot your password?</a>
</div>
<input id="ap_password" type="password" class="a-input-text">
</div>
<button id="sign-in-submit">
<a href="/">Sign-In</a></button>
<div id="legal-text">
<span>By continuing, you agree to Amazon's
<a href="/">Conditions of Use</a> and
<a href="/">Privacy Notice</a>.</span>
</div>
<input type="checkbox" name="rememberMe" value="true">
<span class="a-checkbox-label">Keep me signed in.</span>
<a id="remember_me_learn_more_link" href="/" class="a-popover-trigger a-declarative">Details
<i class="a-icon a-icon-popover"></i>
</a>
<div class="a-divider-break">
<h5> New to Amazon? </h5>
</div>
<button id="create-account-link">
<a href="/">Create your Amazon account</a>
</button>
</div>
<footer>
<div class="footer-links">
<a href="/" class="a-link-normal">Conditions of Use</a>
<a href="/" class="a-link-normal">Privacy Notice</a>
<a href="/" class="a-link-normal">Help</a>
</div>
<span class="copyright">© 1996-2022, Amazon.com, Inc. or its affiliates</span>
</footer>
</body>
</html>