-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-staff.php
More file actions
39 lines (38 loc) · 1.33 KB
/
Copy pathadd-staff.php
File metadata and controls
39 lines (38 loc) · 1.33 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
38
39
<?php include 'header.php'; ?>
<section>
<h2>Admin</h2>
<h3>Add Staff</h3>
<p>
This is where you will enter staff / volunteer information.
</p>
<?php if(isset($add_staff_error)) echo $add_staff_error; ?>
<form action="." method="post" class="dataform">
<input type="hidden" name="action" value="add-staff">
<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="Add Staff" style="border-radius:3px;">
</form>
<br>
<a href="./index.php?action=list-staff">List Staff =></a>
</section>
<?php include 'footer.php'; ?>