-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (99 loc) · 4.9 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
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
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="mail Chimp Clone ">
<meta name="description" content="mail Chimp Clone ">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Mary Richelle">
<link rel="icon" href="./images/Mailchimp-logo.png" type="image/x-icon" />
<link rel="stylesheet" href="style.css">
<title>Sign up for Mailchimp</title>
</head>
<body>
<main>
<div id="main-ui">
<header>
<a href="https://maryrichelle.github.io/Mailchimp-clone/"><img src="./images/Mailchimp-logo.png" id="logo" alt="mail Chimp Logo" width="40" height="40" class="mailChimpLogo"></a>
<button aria-describedby="description-close" class="describedby-close-btn" aria-label="close form"> X </button>
</header>
<section>
<h1>Sign up for MailChimp</h1>
<p>
Create a free acount or
<a href="https://login.mailchimp.com/?" target="_blank" rel="noopener noreferrer"> log in</a>
</p>
<form action="#">
<div class="spacing-div">
<label for="emailAdd" class="form-label" aria-label="Email">Email</label>
<input type="email" class="form-input" name="email" id="emailAdd" required
aria-labelledby="email-description" aria-describedby="email-description">
<span id="email-description" hidden>we will never share your email with anyone
</span>
<span class="required-field">
</span>
</div>
<div class="spacing-div">
<label for="userName" class="form-label" aria-label="User Name">Username</label>
<input type="text" class="form-input" name="userName" id="userName" aria-labelledby="username-description"
aria-describedby="username-description" required>
<span class="required-field"></span>
<span id="username-description" hidden>we recommend using your email as username if you change it only
number and
letters are allowed</span>
</div>
<div class="spacing-div">
<label for="password" class="form-label" aria-label>Password <span id="show">👁️ show</span>
</label>
<input type="password" class="form-input" name="password" id="password"
aria-labelledby="password-description" required>
<span class="required-field"> </span>
<span id="password-description" hidden>use unique password combination of letters and numbers</span>
</div>
<div class="spacing-div checkbox-div">
<input type="checkbox" name="userAgreement" id="checkbox">
<label for="checkbox">
I don't want to receive emails about Mailchimp and related
Intuit product and feature updates, marketing best practices,
and promotions from Mailchimp.
</label>
</div>
<div class="spacing-div">
<p>
By creating an account, you agree to our
<a href="https://mailchimp.com/legal/terms/?_ga=2.67878040.809964678.1676783111-1707941708.1676321410"
target="_blank" rel="noopener noreferrer">Terms</a>
and have read and acknowledge the
<a href="https://www.intuit.com/privacy/statement/" target="_blank" rel="noopener noreferrer">Global
Privacy Statement</a>.
</p>
</div>
<div class="spacing-div">
<button type="button" id="signUp" aria-describedby="signup-description">SignUp</button>
<small id="signup-description" hidden>By signing up you are agree to term and conditions</small>
<button aria-describedby="description-close"> Cancel</button>
<small id="description-close" hidden>Closing this window will discard any information entered and
return you back to the main page</small>
</div>
</form>
<p id="privacy">Invisible reCAPTCHA by Google <a href="https://maryrichelle.github.io/Mailchimp-clone/"
target="_blank" rel="noopener noreferrer"> Privacy Policy </a>and <a
href="https://maryrichelle.github.io/Mailchimp-clone/" target="_blank" rel="noopener noreferrer">
Terms
</a> of Use.</p>
</section>
</div>
<aside></aside>
</main>
<footer>
<p>
created by <a href="https://github.com/MaryRichelle" target="_blank" rel="noopener noreferrer">Mary Richelle</a>
,a copy of
<a style="color: rgb(63, 63, 63)" href="https://login.mailchimp.com/signup/" target="_blank"
rel="noopener noreferrer">MailChimp signup form</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>