-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.html
93 lines (81 loc) · 4.07 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<!-- Bootstrap boilerplate -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="image_src" href="'http://rack.2.mshcdn.com/media/ZgkyMDE1LzA4LzEyLzRlL1NhbmRlcnNyYWxsLmRjZTRjLmpwZwpwCXRodW1iCTEyMDB4OTYwMD4/e0754183/aad/Sanders-rally.jpg">
<title>NYS Voter Registration Mailing</title>
<style type="text/css" media="screen">
a:link { color: red; text-decoration: none; }
a:visited { color: #FF5C5C; text-decoration: none; }
a:hover { color:#33348e; text-decoration: none; }
a:active { color:#7476b4; text-decoration: underline; }
input { color: black; }
select { color: black; }
</style>
</head>
<body style="background-color: transparent;
background:url('http://rack.2.mshcdn.com/media/ZgkyMDE1LzA4LzEyLzRlL1NhbmRlcnNyYWxsLmRjZTRjLmpwZwpwCXRodW1iCTEyMDB4OTYwMD4/e0754183/aad/Sanders-rally.jpg')no-repeat;
background-size: cover;
display:block;
margin:0;
/* padding:0 !important; // This prevents the padding-top command from working. What is it for? */
padding-top: 70px; // Avoid occlusion by navbar">
<!-- More bootstrap boilerplate -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Tell NYS!</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="https://github.com/coventry/nysmailing">Github Repository</a></li>
<li><a href="http://159.203.72.203:8080">Super-Cheap Bernie Fliers</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container" style="background-color: rgba(0,0,0,0.7); color: white;">
<div class="row">
<div class="col-xs-12 col-md-6">
<h3>Tell NY they're about to be disenfranchised!</h3>
<p>It's too late to mail fliers, but you can still get in
touch with NYS voters at risk of being disenfranchised!<p>
<h4>Facebanking</h4>
<p>See if you can find these people on Facebook, friend them
and message them to tell them about the October 9
deadline! Their names are unique in the NYS voter rolls, so
if they're on Facebook they should be easy to identify.</p>
facebanking_names_go_here
<h4>Stamps</h4>
<p><a href='http://thecomicnews.com/'>These</a> don't
fit on our fliers and we have no affiliation with
them, but we think they're cool.
<img src="http://www.politicalstationery.com/images/bernieenvelopeart_400x314.gif"
width="30%"/>
</div>
</div>
</div>
</body>
</html>