-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_tasks.php
53 lines (52 loc) · 1.38 KB
/
admin_tasks.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
<?php
session_start();
?>
<!DOCTYPE HTML>
<head>
<title>ADMIN TASKS</title>
</head>
<body>
<table align="center" style="border:2px solid blue;">
<tr>
<form action="manage_bookstorecatalog.php" method="post" id="catalog">
<td align="center">
<input type="submit" name="bookstore_catalog" id="bookstore_catalog" value="Manage Bookstore Catalog" style="width:200px;">
</td>
</form>
</tr>
<!--not required-->
<!-- <tr>
<form action=" " method="post" id="orders">
<td align="center">
<input type="submit" name="place_orders" id="place_orders" value="Place Orders" style="width:200px;">
</td>
</form>
</tr> -->
<tr>
<form action="reports.php" method="post" id="reports">
<td align="center">
<input type="submit" name="gen_reports" id="gen_reports" value="Generate Reports" style="width:200px;">
</td>
</form>
</tr>
<!--not required-->
<!--<tr>
<form action="update_adminprofile.php" method="post" id="update">
<td align="center">
<input type="submit" name="update_profile" id="update_profile" value="Update Admin Profile" style="width:200px;">
</td>
</form>
</tr>-->
<tr>
<td> </td>
</tr>
<tr>
<form action="index.php" method="post" id="exit">
<td align="center">
<input type="submit" name="cancel" id="cancel" value="EXIT 3-B.com[Admin]" style="width:200px;">
</td>
</form>
</tr>
</table>
</body>
</html>