34777-vm/users.php
Flatlogic Bot b1030df0f7 mms
2025-10-08 05:53:42 +00:00

26 lines
641 B
PHP

<?php
require_once 'auth.php';
// Restrict access to Administrators
if ($_SESSION['user']['role'] !== 'Administrator') {
header('Location: index.php');
exit;
}
$page_title = 'Operators';
require_once 'partials/header.php';
?>
<div class="container-fluid">
<div class="d-flex justify-content-between align-items-center">
<h1 class="h3 mb-0 text-gray-800"><?php echo $page_title; ?></h1>
<button class="btn btn-primary"><i data-feather="plus" class="mr-2"></i>Add Operator</button>
</div>
<hr>
<p>Operator management page content goes here.</p>
</div>
<?php require_once 'partials/footer.php'; ?>