-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolunteer.html
105 lines (90 loc) · 3.86 KB
/
volunteer.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
---
tab: volunteer
title: Volunteer to be a Helper Bee
layout: default
---
<div class="spinner"><i class="fa fa-spin fa-cog"></i></div>
<div class="alert-box">
<div class="success alert alert-success">
<p>Success!</p>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="fail alert alert-danger">
<div>
Oops, there was a problem:
<div class="reason"></div>
</div>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
<div class="container">
<h1>Volunteer to be a Helper Bee</h1>
<p>It’s easy. Sign up here to volunteer to do a job for someone in
our community. (What’s a job you are good at? What do you love to do?)
People will donate money for your volunterer work.</p>
<p>Your money goes toward YOUR Class Activities - the school play,
Thompson Island outing, pizza parties, etc. <a href="/faq">Learn more.</a>
<form class="signup">
<h4 class="mt-5">What job will you do that would be worth $10?</h4>
<div class="form-group row align-items-center mb-2">
<label class="col-3 col-md-2" for="offer_type">What type:</label>
<div class="col-6 form-inline">
<select class="form-control col mr-2" id="offer_type" name="offer_type" required>
<option value="choose">View all jobs...</option>
<option class="hr" disabled>──────────</option>
<option value="other">Other...</option>
</select>
<input type="text" class="form-control col d-none" placeholder="or something else..."
oninput="validate_offer_type(this)" id="offer_type_other" name="offer_type_other"/>
</div>
</div>
<div class="form-group row align-items-center mb-2">
<label class="col-3 col-md-2" for="10-for">Donation: </label>
<div class="col-2 col-md-1" id="10-for">$10 for</div>
<div class="form-inline" id="offer_per">
<input type="number" class="d-inline-block col-4 form-control" id="offer_per_hour" name="offer_per_hour" value="1"/>
<select class="d-inline-block form-control" id="offer_unit" name="offer_unit">
<option value="hour">hour</option>
<option value="visit">visits</option>
<option value="item">items</option>
</select>
</div>
</div>
<div class="form-group row mb-2">
<label class="col-3 col-md-2 col-form-label" for="offer_description">About this:</label>
<div class="col-6">
<textarea rows="4" class="form-control" name="offer_description"
placeholder="Describe what you will offer. How many times? How long?" required></textarea>
</div>
</div>
<h4 class="mt-4">You and your parent's contact information</h4>
<label class="col-form-label" for="first_name">8th Grade Student</label>
<div class="form-row mb-2">
<div class="col-3">
<input type="text" class="form-control" name="first_name" placeholder="first name" required />
</div>
<div class="col-3">
<input type="text" class="form-control" name="last_name" placeholder="last name" required />
</div>
</div>
<label class="col-form-label mt-3" for="parent_name">Parent</label>
<div class="form-row mb-2">
<div class="col-6">
<input type="text" class="form-control" name="parent_name" placeholder="parent's name" required/>
</div>
</div>
<div class="form-row">
<div class="col-3">
<input type="tel" class="form-control" name="parent_phone" placeholder="parent's phone" required />
</div>
<div class="col-3">
<input type="email" class="form-control" name="parent_email" placeholder="parent's email" required />
</div>
</div>
<button type="submit" class="signup btn btn-primary mt-4 mb-5">Sign up</button>
</form>
<script src="assets/js/volunteer.js"></script>