-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
60 lines (56 loc) · 1.84 KB
/
sidebar.php
File metadata and controls
60 lines (56 loc) · 1.84 KB
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
<?php
$logoPath = '/FMR%202.0/public/picture/logo.png????';
if ($userRole == "user") {
?>
<!-- User Sidebar -->
<section class="sideBarcon">
<div class="imgCon">
<img src='<?php echo $logoPath; ?>' alt="" />
</div>
<ul>
<li>
<a href="index.php?id=<?php echo $id; ?>" ><i class="bx bxs-dashboard"></i></a>
</li>
<li>
<a href="report.php?id=<?php echo $id; ?>" > <i class="bx bxs-hand"></i></a>
</li>
<li>
<a href="reportlist.php?id=<?php echo $id; ?>"><i class="bx bx-list-minus"></i></a>
</li>
<li>
<a href="profile.php?id=<?php echo $id; ?>"><i class="bx bxs-group"></i></a>
</li>
<li class="logout">
<a href="/FMR%202.0/index.php"><i class="bx bx-log-out-circle"></i></a>
</li>
</ul>
</section>
<?php
} else {
?>
<!-- Admin Sidebar -->
<section class="sideBarcon">
<div class="imgCon">
<img src='<?php echo $logoPath; ?>' alt="s" />
</div>
<ul>
<li>
<a href="index.php?id=<?php echo $id; ?>" ><i class="bx bxs-dashboard"></i></a>
</li>
<li>
<a href="reportlist.php?id=<?php echo $id; ?>"><i class="bx bx-list-minus"></i></a>
</li>
<li>
<a href="essential.php?id=<?php echo $id; ?>"><i class='bx bx-copy-alt'></i></a>
</li>
<li>
<a href="list.php?id=<?php echo $id; ?>"><i class="bx bx-cog"></i></a>
</li>
<li class="logout">
<a href="/FMR%202.0/index.php"><i class="bx bx-log-out-circle"></i></a>
</li>
</ul>
</section>
<?php
}
?>