-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvolunteer.php
More file actions
37 lines (36 loc) · 1.26 KB
/
Copy pathvolunteer.php
File metadata and controls
37 lines (36 loc) · 1.26 KB
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
<?php include 'header.php'; ?>
<section>
<h2>Volunteer!</h2>
<p>
This is where you will enter your volunteer information.
</p>
<?php if(isset($add_volunteer_error)) echo $add_volunteer_error; ?>
<form action="." method="post" class="dataform">
<input type="hidden" name="action" value="add-volunteer">
<label>First Name</label>
<input type="text" name="first_name">
<br>
<label>Last Name</label>
<input type="text" name="last_name">
<br>
<label>Phone Number</label>
<input type="text" name="phone">
<br>
<label>Email Address</label>
<input type="text" name="email">
<br>
<p>
Now choose a username and password to use
when logging into the campaign site.
</p>
<label>Username</label>
<input type="text" name="login">
<br>
<label>Password</label>
<input type="text" name="pw">
<br>
<br>
<input type="submit" value="Volunteer!" style="border-radius:3px;">
</form>
</section>
<?php include 'footer.php'; ?>