-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.php
executable file
·71 lines (66 loc) · 2.45 KB
/
success.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
62
63
64
65
66
67
68
69
70
71
<?php
session_start();
include_once('connect_db.php');
if(isset($_SESSION['username'])){
$id=$_SESSION['admin_id'];
$user=$_SESSION['username'];
}else{
header("location:http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/index.php");
exit();
}
?>
<!DOCTYPE html>
<html>
<head>
<title><?php echo $user;?> -Pharmacy Sys</title>
<link rel="stylesheet" type="text/css" href="style/mystyle.css">
<link rel="stylesheet" href="style/style.css" type="text/css" media="screen" />
<link rel="stylesheet" type="text/css" href="style/dashboard_styles.css" media="screen" />
<script src="js/function.js" type="text/javascript"></script>
<style>
#left_column{
height: 497px;
}
</style>
</head>
<body>
<div id="content">
<div id="header">
<h1><a href="#"><img src="images/hd_logo.jpg"></a> Pharmacy Sys</h1></div>
<div id="left_column">
<div id="button">
<ul>
<li><a href="admin.php">Dashboard</a></li>
<li><a href="admin_pharmacist.php">Pharmacist</a></li>
<li><a href="admin_manager.php">Manager</a></li>
<li><a href="admin_cashier.php">Cashier</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
</div>
<div id="main">
<h4 style="color:sienna; margin-left: 200px; font-size:20px;">You have successfully added and entity into the database</h4>
<!-- Dashboard icons -->
<div class="grid_7">
<a href="admin.php" class="dashboard-module">
<img src="images/admin_icon.jpg" width="75" height="75" alt="edit" />
<span>Dashboard</span>
</a>
<a href="admin_pharmacist.php" class="dashboard-module">
<img src="images/pharmacist_icon.jpg" width="75" height="75" alt="edit" />
<span>Manage Pharmacist</span>
</a>
<a href="admin_manager.php" class="dashboard-module">
<img src="images/manager_icon.png" width="75" height="75" alt="edit" />
<span>Manage Manager</span>
</a>
<a href="admin_cashier.php" class="dashboard-module">
<img src="images/cashier_icon.jpg" width="75" height="75" alt="edit" />
<span>Manage Cashier</span>
</a>
</div>
</div>
<div id="footer" align="Center"> Pharmacy Sys 2013. Copyright All Rights Reserved</div>
</div>
</body>
</html>