-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin3.php
69 lines (67 loc) · 2.52 KB
/
admin3.php
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
<?php include 'header.php';?>
<!------- add page here -------->
<center>
<font color="darkblue" size="4">Add a Coordinator</font><br><br /><br />
<form action="admin3a.php" method="post" name="add1">
<table width="381" style="width:100px;">
<tr>
<td width="111" align="right">
Username:
</td>
<td align="left" colspan="2">
<INPUT name="myuser"
style="WIDTH: 100%; HEIGHT: 22px; background-color: white; color: darkblue;"
size=56 required
oninvalid="this.setCustomValidity('Please enter the admin username');"
onchange="try{setCustomValidity('')}catch(e){};" x-moz-errormessage="Please enter the admin username">
</td>
</tr>
<tr>
<td align="right" nowrap>
Password:
</td>
<td align="left" colspan="2">
<INPUT name="mypassword"
style="WIDTH: 100%; HEIGHT: 22px; background-color: white; color: darkblue;"
size=56 required
oninvalid="this.setCustomValidity('Please enter the admin password');"
onchange="try{setCustomValidity('')}catch(e){};" x-moz-errormessage="Please enter the admin password">
</td>
</tr>
<tr>
<td align="right" nowrap>
District:
</td>
<td align="left" colspan="1">
<INPUT name="mydistrict"
style="WIDTH: 60px; HEIGHT: 22px; background-color: white; color: darkblue;"
size=56 required
oninvalid="this.setCustomValidity('Please enter the district or region of the admin - system admins should be zero');"
onchange="try{setCustomValidity('')}catch(e){};" x-moz-errormessage="Please enter the district or region of the admin - system admins should be zero">
</td>
<td align="right" nowrap>
Admin Level:
<select size="1"
name="myuserlevel" id="myuserlevel" required>
<option value="">Select Level</option>
<option value="1">Local Coordinator</option>
<option value="2">System Admin</option>
</select>
</td>
</tr>
<tr>
<td align="center" colspan="4">
For System Administrators Enter the District as 0 (zero)
</td>
</tr>
<tr>
<td align="center" colspan="4">
<input type="Submit" value="Add Admin Coordinator" name="b2">
</td>
</tr>
</table>
</form>
</center>
<!------- end page here ------------>
</body>
</html>