forked from tfrce/stopwatchingus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
volunteers.html
78 lines (70 loc) · 2.7 KB
/
volunteers.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
---
layout: default
title: Volunteers
sidebar: true
---
<h2>Volunteer and help make the rally a success</h2>
<form class="volunteer-form bs-example form-horizontal">
<p style="padding:10px 0">This rally won't be successful without help from people like you. Fill out this form and get involved:</p>
<fieldset>
<div class="form-group">
<label class="col-lg-2 control-label">Volunteer*</label>
<div class="col-lg-10">
<div class="radio">
<label>
<input type="checkbox" name="viewing_party" id="" value="yes" >
Help organize a viewing party in your area
</label>
</div>
<div class="radio">
<label>
<input type="checkbox" name="transportation" id="" value="yes">
Help organize transportation to the rally.
</label>
</div>
<div class="radio">
<label>
<input type="checkbox" name="call_banking" id="" value="yes">
Help us with call banking to drive attendance.
</label>
</div>
</div>
</div>
<div class="form-group">
<label for="inputEmail" class="col-lg-2 control-label">Email*</label>
<div class="col-lg-10">
<input type="text" class="form-control" required id="inputEmail" name="email" placeholder="[email protected]">
</div>
</div>
<div class="form-group">
<label for="inputName" class="col-lg-2 control-label">Full Name*</label>
<div class="col-lg-10">
<input type="text" class="form-control" required id="inputName" name="name" placeholder="John Doe">
</div>
</div>
<div class="form-group">
<label for="inputPhone" class="col-lg-2 control-label">Phone*</label>
<div class="col-lg-10">
<input type="text" class="form-control" required id="inputPhone" name="phone" placeholder="012-345-6789">
</div>
</div>
<div class="form-group">
<label for="inputZip" class="col-lg-2 control-label">Zip*</label>
<div class="col-lg-10">
<input type="text" class="form-control" required id="inputZip" name="zipcode" placeholder="10001">
</div>
</div>
<div class="form-group">
<label for="textArea" class="col-lg-2 control-label">Notes</label>
<div class="col-lg-10">
<span class="help-block">Anything else you want us to know? Or is there something in particular you want to help with?</span>
<textarea class="form-control" rows="3" name="about" id="textArea"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-lg-10 col-lg-offset-2">
<button type="submit" class="btn btn-lg btn-primary">Submit</button>
</div>
</div>
</fieldset>
</form>