-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.php
122 lines (117 loc) · 4.98 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<!--
Developed by Joseph Kayode Agbede for Mt. Sinai Hospital Ebutte-Metta.
-->
<?php
$staffCode = "HR";
?>
<html>
<head>
<meta charset="UTF-8">
<title><?php echo $title ?></title>
<link href="CSS/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="CSS/pagedefinition.css" rel="stylesheet" type="text/css"/>
<link href="CSS/fa/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="header">
<span id="onlinestatus" class="btn btn-success">
Online
</span>
</div>
<!-- Admin(Super User) -->
<div class="col-lg-12 col-md-12 hidden-sm hidden-xs" style="height:60px; padding-top:15px; display:none" class="col-lg-2 col-md-2 ">
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Staff
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Clients
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Accounts
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Procurement
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Inventory
</span>
<span class="col-lg-2 col-md-2 " style="color:#fff">
Administration Menu
</span>
</div>
<!-- Human Resource -->
<div class="col-lg-12 col-md-12 hidden-sm hidden-xs" style="height:60px; padding-top:15px; display:none" class="col-lg-2 col-md-2 ">
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Staff
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Payroll
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Onboarding
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Employee-Scheduling
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Inventory
</span>
<span class="col-lg-2 col-md-2 " style="color:#fff">
Human resource
</span>
</div>
<!--Finance-->
<div class="col-lg-12 col-md-12 hidden-sm hidden-xs" style="height:60px; padding-top:15px; display:none" class="col-lg-2 col-md-2 ">
<span class="col-lg-2 col-md-2 mainButtons" style="min-width:160px !important">
<i class="fa fa-user-plus" style="font-size:30px;"></i><br>
Voucher/Payment
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Payroll
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
FinanceReport
</span>
<span class="col-lg-2 col-md-2 " style="color:#fff">
Finance
</span>
</div>
<!-- Front Desk -->
<div class="col-lg-12 col-md-12 hidden-sm hidden-xs" style="height:60px; padding-top:15px; display:none" class="col-lg-2 col-md-2 ">
<span class="col-lg-2 col-md-2 mainButtons" >
<i class="fa fa-user-plus" style="font-size:30px;"></i><br>
Patient
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
Payroll
</span>
<span class="col-lg-2 col-md-2 mainButtons">
<i class="fa fa-user-plus" style="font-size:30px"></i><br>
FinanceReport
</span>
<span class="col-lg-2 col-md-2 " style="color:#fff">
Front Desk
</span>
</div>
<div class="content" style="background-color:rgba(0,0,0,0.4)">
<div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"></div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
</div>
<div class="col-lg-3 col-md-3 col-sm-12 col-xs-12"></div>
</div>
<div class="footer"></div>
</body>