-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathadmin_dashboard.php
61 lines (56 loc) · 2.24 KB
/
admin_dashboard.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
<?php
session_start();
if(!isset($_SESSION['admin']))
{
header("Location: index.php");
exit();
}
include 'configuration.php';
if(!($dbconn = @mysql_connect($dbhost, $dbuser, $dbpass))) exit('Error connecting to database.');
mysql_select_db($db);
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dashboard - Inventory Management System</title>
<link rel="stylesheet" href="css/bootstrap/css/bootstrap.min.css" media="screen" title="no title">
<link rel="stylesheet" href="style.css" media="screen" title="no title">
<script src="js/jquery-3.1.0.min.js"></script>
<script src="css/bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="container" id="logo">
<a class='logo' href="admin_dashboard.php">Inventory Management System</a>
</div>
<br><h1>Welcome to the Administrator Dashboard</h1>
<div class="box-section row">
<div class="col-md-4 text-center">
<br><br><br><br><a href="add_owner"><button type="button" class="btn btn-danger" id="add_owner">
<span class="glyphicon glyphicon-plus-sign"></span> Click Here
</button></a>
<br>to
<br><legend>Add an Owner</legend>
<small class="text-danger text-center">Add a new Store Owner</small><br><br><br>
</div>
<div class="col-md-4 text-center">
<br><br><br><br><a href="add_employee"><button type="button" class="btn btn-primary" id="add_employee">
<span class="glyphicon glyphicon-user"></span> Click Here
</button></a>
<br>to
<br><legend>Add an Employee</legend>
<small class="text-danger text-center">Add an employee to the users-list of a store</small><br><br><br>
</div>
<div class="col-md-4 text-center">
<br><br><br><br><a href="#"><button type="button" class="btn btn-primary" id="view_users">
<span class="glyphicon glyphicon-search"></span> Click Here
</button></a>
<br>to
<br><legend>Current Users</legend>
<small class="text-danger text-center">View the list of all people using the service</small><br><br><br>
</div>
</div>
</div>
</body>
</html>