Last change
on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago |
Upload project files
|
-
Property mode
set to
100644
|
File size:
779 bytes
|
Rev | Line | |
---|
[e3d4e0a] | 1 | <?php
|
---|
| 2 | session_start();
|
---|
| 3 | if(!isset($_SESSION['user_ID']) || !isset($_SESSION['is_admin']) || !$_SESSION['is_admin']) {
|
---|
| 4 | header("Location: ./Log In.php");
|
---|
| 5 | }
|
---|
| 6 | ?>
|
---|
| 7 | <!DOCTYPE html>
|
---|
| 8 | <html lang="en">
|
---|
| 9 | <head>
|
---|
| 10 | <meta charset="UTF-8">
|
---|
| 11 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
---|
| 12 | <link rel="stylesheet" href="./CSS/Orders.css">
|
---|
| 13 | <title>Orders</title>
|
---|
| 14 | </head>
|
---|
| 15 | <body>
|
---|
| 16 | <div>
|
---|
| 17 | <a href="./PendingOrders.php">Pending Orders</a>
|
---|
| 18 | <a href="./ActiveOrders.php">Active Orders</a>
|
---|
| 19 | <a href="./DeliveredOrders.php">Delivered Orders</a>
|
---|
| 20 | <a href="./AdminDashboard.php">Dashboard</a>
|
---|
| 21 | <a href="./Logout.php">Logout</a>
|
---|
| 22 | </div>
|
---|
| 23 | </body>
|
---|
| 24 | </html> |
---|
Note:
See
TracBrowser
for help on using the repository browser.