-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
64 lines (59 loc) · 2.43 KB
/
Copy pathheader.php
File metadata and controls
64 lines (59 loc) · 2.43 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
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
<?php
require 'config.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BTG Contact List</title>
</head>
<body>
<br><br><br>
<center>
<table cellpadding="0" cellspacing="0" border="0" align="center">
<?php if ($_SESSION['adminlevel'] > 1) { ?>
<tr>
<td valign="top">
<form method="POST" action="admin3.php"name="button21">
<input type="submit" value="Add an Admin" name="b21" style="width:150px; height: 24px; background-color: lightgray;" size=35>
</form>
</td>
<td valign="top">
<form method="POST" action="admin4.php"name="button22">
<input type="submit" value="Update an Admin" name="b22" style="width:150px; height: 24px; background-color: lightgray;" size=35>
</form>
</td>
<td valign="top">
<form method="POST" action="admin5.php"name="button23">
<input type="submit" value="Delete an Admin" name="b23" style="width:150px; height: 24px; background-color: lightgray;" size=35>
</form>
</td>
</tr>
<?php } ?>
<tr>
<td valign="baseline">
<form method="POST" action="add1.php" name="button11">
<input type="submit" value="Add a Contact" name="b11" style="width:150px; height: 24px; background-color: whitesmoke;" size=35 />
</form>
</td>
<td valign="baseline">
<form method="POST" action="update1.php"name="button12">
<input type="submit" value="Update Contact Info" name="b12" style="width:150px; height: 24px; background-color: whitesmoke;" size=35>
</form>
</td>
<td valign="baseline">
<form method="POST" action="delete1.php" name="button13">
<input type="submit" value="Delete a Contact" name="b13" style="width:150px; height: 24px; background-color: whitesmoke;" size=35 />
</form>
</td>
</tr>
<tr>
<td valign="baseline" colspan="3" align="center">
<form method="POST" action="loginpost.php" name="button14">
<input type="Hidden" name="sorter" value="city, zip" />
<input type="submit" value="View all FROM btgcontacts" name="b13" style="width:250px; height: 24px; background-color: silver;" size=35 />
</form>
</td>
</table>
</center>
<br />