-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (31 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>List Builder</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="/stylesheets/master.css" type="text/css" media="all" />
<link rel="stylesheet" href="/stylesheets/facebox.css" type="text/css" media="all" />
</head>
<body>
<div id="confirmation" style="display: none;"><span>Thanks for subscribing!</span></div>
<img src="/images/logo.png" alt="Logo" id="logo" />
<form action="http://YOURSITEADDRESS.createsend.com/t/r/s/xxxxx/" method="post" id="subForm">
<ul>
<li><label for="name">Name</label>
<input type="text" name="cm-name" id="name" placeholder="First Last" /></li>
<li><label for="xxxxx-xxxxx">Email</label>
<input type="email" name="cm-xxxxx-xxxxx" id="xxxxx-xxxxx" placeholder="[email protected]" /></li>
<li class="checkbox">
<input type="checkbox" name="accept-terms" id="accept-terms" /><label for="accept-terms">I have read and accept the <a href="/docs/terms.html" rel="facebox">Terms</a> & <a href="/docs/privacy.html" rel="facebox">Privacy</a> policies.</label>
</li>
<li><input type="submit" value="Sign Me Up!" /></li>
</ul>
</form>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="/javascripts/facebox.js"></script>
<script type="text/javascript" src="/javascripts/application.js"></script>
</body>
</html>