-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolunteer-signup.html
167 lines (159 loc) · 8.24 KB
/
volunteer-signup.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Volunteer Sign Up - FutureSeeds</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main>
<section class="volunteer-hero py-5">
<div class="container">
<div class="card border-0 shadow-lg bg-light">
<div class="card-body p-3">
<div class="row align-items-center justify-content-between">
<div class="col-lg-6 mb-4 mb-lg-0">
<h1 class="card-title display-4 fw-bold mb-3">Become a FutureSeeds Volunteer</h1>
<p class="card-text lead">Join our team of dedicated volunteers and make a direct impact
on children's lives around the world.</p>
</div>
<div class="col-lg-5 d-flex justify-content-center">
<img class="img-fluid rounded-circle shadow-lg" src="images/highfive.jpg"
alt="Volunteers working with children" loading="lazy" style="max-width: 80%;">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="volunteer-form">
<div class="container">
<h2 class="text-center mb-5">Volunteer Sign Up Form</h2>
<form class="needs-validation" novalidate>
<div class="row">
<div class="col-md-6 mb-3">
<label for="firstName" class="form-label">First Name</label>
<input type="text" class="form-control" id="firstName" required>
<div class="invalid-feedback">
Please provide your first name.
</div>
</div>
<div class="col-md-6 mb-3">
<label for="lastName" class="form-label">Last Name</label>
<input type="text" class="form-control" id="lastName" required>
<div class="invalid-feedback">
Please provide your last name.
</div>
</div>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" required>
<div class="invalid-feedback">
Please provide a valid email address.
</div>
</div>
<div class="mb-3">
<label for="phone" class="form-label">Phone Number</label>
<input type="tel" class="form-control" id="phone" name="phone" required>
<div class="invalid-feedback">
Please provide a valid phone number.
</div>
</div>
<div class="mb-3">
<label for="location" class="form-label">Location</label>
<input type="text" class="form-control" id="location" placeholder="City, Country" required>
<div class="invalid-feedback">
Please provide your location.
</div>
</div>
<div class="mb-3">
<label for="skills" class="form-label">Skills and Experience</label>
<textarea class="form-control" id="skills" rows="3"
placeholder="Tell us about your skills and relevant experience"></textarea>
</div>
<div class="mb-3">
<label for="availability" class="form-label">Availability</label>
<select class="form-select" id="availability" required>
<option value="">Select your availability</option>
<option value="weekdays">Weekdays</option>
<option value="weekends">Weekends</option>
<option value="both">Both Weekdays and Weekends</option>
</select>
<div class="invalid-feedback">
Please select your availability.
</div>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="agreeTerms" required>
<label class="form-check-label" for="agreeTerms">I agree to the terms and conditions</label>
</div>
<div class="text-center mb-4">
<button type="submit" class="btn btn-primary btn-lg">Submit Application</button>
</div>
</form>
</div>
</section>
<section class="volunteer-opportunities py-5 bg-light">
<div class="container">
<h2 class="text-center mb-4">Volunteer Opportunities</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h3 class="card-title">Education Support</h3>
<p class="card-text">Help children with their studies, teach English, or assist in our
educational programs.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h3 class="card-title">Healthcare Assistance</h3>
<p class="card-text">Support our healthcare initiatives, assist in medical camps, or
help with health education.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h3 class="card-title">Community Development</h3>
<p class="card-text">Participate in community projects, help organize events, or assist
in fundraising activities.</p>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 FutureSeeds. All rights reserved.</p>
</div>
</footer>
<div class="modal fade" id="submissionModal" tabindex="-1" aria-labelledby="submissionModalLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="submissionModalLabel">Application Submitted</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Thank you for submitting your volunteer application. We will review it and get back to you soon!
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/volunteer-form.js"></script>
</body>
</html>