-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (22 loc) · 928 Bytes
/
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
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MailChimp Mailer Info</title>
<!-- CSS Library for form styling -->
<link rel="stylesheet" href="https://unpkg.com/purecss@0.6.1/build/pure-min.css" integrity="sha384-CCTZv2q9I9m3UOxRLaJneXrrqKwUNOzZ6NGEUMwHtShDJ+nCoiXJCAgi05KfkLGY" crossorigin="anonymous">
</head>
<body style="margin:0 auto;padding:200px;">
<form class="pure-form pure-form-aligned" method="GET" action="mailchimp-mailer-info.php">
<fieldset>
<div class="pure-control-group">
<label for="email">Email Address</label>
<input name="email" id="email" type="email" required placeholder="Email Address">
</div>
<div class="pure-controls">
<button type="submit" class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
</body>
</html>