60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
$currentPage = basename($_SERVER['PHP_SELF']);
|
|
?>
|
|
|
|
<div class="sidebar" id="sidebar">
|
|
|
|
<div class="sidebar-header" style="display:flex; justify-content:space-between; align-items:center; margin-bottom:20px;">
|
|
|
|
<h3 class="sidebar-title" style="margin:0; font-size:18px; line-height:1;">
|
|
DASHBOARD
|
|
</h3>
|
|
|
|
<button id="toggleSidebar"
|
|
style="background:none; border:none; color:black; font-size:18px; cursor:pointer;">
|
|
<i class="fas fa-bars"></i>
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
<ul>
|
|
<li class="<?= ($currentPage == 'dashboard.php') ? 'active' : '' ?>">
|
|
<a href="dashboard.php">
|
|
<i class="fas fa-home"></i>
|
|
<span class="text">Dashboard</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li class="<?= ($currentPage == 'monitoring.php') ? 'active' : '' ?>">
|
|
<a href="monitoring.php">
|
|
<i class="fas fa-chart-line"></i>
|
|
<span class="text">Monitoring Parameter</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li class="<?= ($currentPage == 'kontrol.php') ? 'active' : '' ?>">
|
|
<a href="kontrol.php">
|
|
<i class="fas fa-sliders-h"></i>
|
|
<span class="text">Sistem Kontrol</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li class="<?= ($currentPage == 'catatan.php') ? 'active' : '' ?>">
|
|
<a href="catatan.php">
|
|
<i class="fas fa-note-sticky"></i>
|
|
<span class="text">Catatan</span>
|
|
</a>
|
|
</li>
|
|
|
|
<br><br>
|
|
|
|
<li>
|
|
<a href="logout.php">
|
|
<i class="fas fa-sign-out-alt"></i>
|
|
<span class="text">Logout</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|