-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvote.html
109 lines (85 loc) · 3.79 KB
/
vote.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
106
107
108
109
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Let's Do</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="stylesheets/skeleton.css">
<link rel="stylesheet" href="stylesheets/custom.css">
<!-- FONT
================================================== -->
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300,700' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head>
<body>
<div class="background ">
<div class="foreground one column">
<h1 class="header">Let's Do...<span class="blink">l</span></h1>
<h5 align="center">The quickest, simplest way to force your friends to make a decision</h5>
<hr/>
<h3>Hey! You've been invite to vote for: EVENT NAME </h3>
<fieldset>
<label for=""><h2>Location Options</h2></label>
<label for="regularRadio">
<input type="radio" name="locations" id="radioLoc1" value="radio 1" />
<span>Loc1</span>
</label>
<label for="secondRegularRadio">
<input type="radio" name="locations" id="radioLoc2" value="radio 2" />
<span>Loc2</span>
</label>
<label for="thirdRegularRadio">
<input type="radio" name="locations" id="radioLoc3" value="radio 3" />
<span>Loc3</span>
</label>
<label for="fourthRegularRadio">
<input type="radio" name="locations" id="radioLoc4" value="radio 4" />
<span>Loc4</span>
</label>
</fieldset>
<fieldset>
<label for=""><h2>Time Options</h2></label>
<label for="regularRadio">
<input type="radio" name="times" id="radioTime1" value="Time 1" />
<span>Time1</span>
</label>
<label for="secondRegularRadio">
<input type="radio" name="times" id="radioTime2" value="Time 2" />
<span>Time2</span>
</label>
<label for="thirdRegularRadio">
<input type="radio" name="times" id="radioTime3" value="Time 3" />
<span>Time3</span>
</label>
<label for="fourthRegularRadio">
<input type="radio" name="times" id="radioTime4" value="Time 4" />
<span>Time4</span>
</label>
</fieldset>
<a href="votingresults.html"><div class="button full-width eight columns">VOTE!</div></a>
<br>
<br>
<h6 align="center">Once you've voted, keep checking this page for the winner. Voting will close once all votes are collected, or at the earliest time specified.</h6>
</div>
</div>
</body>
</html>