forked from g33kyrash/Online-Banking-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_hompage.php
38 lines (34 loc) · 1.13 KB
/
admin_hompage.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
<?php
session_start();
if(!isset($_SESSION['admin_login']))
header('location:adminlogin.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Admin Homepage</title>
<link rel="stylesheet" href="newcss.css">
</head>
<?php include 'header.php' ?>
<div class='content'>
<?php include 'admin_navbar.php'?>
<div class='admin_staff'>
<ul>
<li><b><u>Staff</u></b></li>
<li> <a href="addstaff.php">Add staff member</a></li>
<li><a href="display_staff.php">Edit staff member</a></li>
<li> <a href="delete_staff.php">Delete staff</a></li>
</ul>
</div>
<div class='admin_customer'>
<ul>
<li><b><u> Customer</u></b></li>
<li><a href="addcustomer.php">Add Customer</a></li>
<li> <a href="display_customer.php">Edit customer</a></li>
<li> <a href="delete_customer.php">Delete customer</a></li>
</div>
</div>
<?php include 'footer.php';?>
</body>
</html>