This repository was archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.php
More file actions
53 lines (48 loc) · 2.1 KB
/
Copy pathmenu.php
File metadata and controls
53 lines (48 loc) · 2.1 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
<div class="container-fluid">
<div class="row">
<nav class="col-md-2 d-none d-md-block bg-light sidebar">
<div class="sidebar-sticky">
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link <?php if(basename($_SERVER['PHP_SELF']) == "records.php") echo " active"; ?>" href="records.php">
<span data-feather="search"></span>
Search Records
</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if(basename($_SERVER['PHP_SELF']) == "userSettings.php") echo " active"; ?>" href="userSettings.php">
<span data-feather="tool"></span>
User Settings
</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if(basename($_SERVER['PHP_SELF']) == "adminSettings.php") echo " active"; ?>" href="adminSettings.php">
<span data-feather="settings"></span>
Admin Settings
</a>
</li>
</ul>
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
<span>Data Tools</span>
<!--<a class="d-flex align-items-center text-muted" href="#">
<span data-feather="plus-circle"></span>
</a>-->
</h6>
<ul class="nav flex-column mb-2">
<li class="nav-item">
<a class="nav-link <?php if(basename($_SERVER['PHP_SELF']) == "simulation.php") echo " active"; ?>" href="simulation.php">
<span data-feather="smartphone"></span>
Simulate NFC Scan
</a>
</li>
</ul>
<ul class="nav flex-column mb-2">
<li class="nav-item">
<a class="nav-link <?php if(basename($_SERVER['PHP_SELF']) == "download.php") echo " active"; ?>" href="download.php">
<span data-feather="file-text"></span>
Download All Data
</a>
</li>
</ul>
</div>
</nav>