forked from aggavni4/Resolute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolunteering.html
40 lines (27 loc) · 1.21 KB
/
volunteering.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
<!DOCTYPE html>
<html>
<head>
<title>Volunteering Form</title>
<link rel="stylesheet" type="text/css" href="/form_styles.css">
</head>
<body>
<form action="/submit_volunteer" method="post">
<h1>Volunteer for Resolute</h1>
<label for="full_name">Full Name:</label>
<input type="text" id="full_name" name="full_name" required><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" required><br><br>
<label for="address">Address:</label>
<input type="text" id="address" name="address" required><br><br>
<label for="availability">Availability:</label>
<input type="text" id="availability" name="availability" required><br><br>
<label for="skills">Skills/Experience:</label>
<textarea id="skills" name="skills" rows="4" required></textarea><br><br>
<label for="interests">Interests/Reasons for Volunteering:</label>
<textarea id="interests" name="interests" rows="4" required></textarea><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>