-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.php
41 lines (32 loc) · 935 Bytes
/
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
<?php include('master/head.php'); ?>
<td class="content">
<?php if(isset($_SESSION['msg'])){
echo $_SESSION['msg'];
unset($_SESSION['msg']);
}
?>
<?php if ($_SESSION['log_role']=="admin"): ?>
<div class="card-container">
<div class="card bg-purple-light">
<div class="card-title"></div>
<div class="card-content">52</div>
<div class="card-link"><a href="">agdchgk</a></div>
</div>
<div class="card bg-purple-light">
<div class="card-title"></div>
<div class="card-content">52</div>
<div class="card-link">View all bookings</div>
</div>
</div>
<?php endif ?>
<?php if ($_SESSION['log_role']=="patient"): ?>
<!-- Patient Dashboard -->
<?php endif ?>
<?php if ($_SESSION['log_role']=="doctor"): ?>
<!-- Doctor Dashboard -->
<?php endif ?>
<?php if ($_SESSION['log_role']=="laboratorian"): ?>
<!-- Laboratorian Dashboard -->
<?php endif ?>
</td>
<?php include('master/foot.php'); ?>