2024-06-28 17:05:32 +00:00
|
|
|
<!DOCTYPE html>
|
2024-07-24 14:08:13 +00:00
|
|
|
<html lang="en">
|
2024-06-28 17:05:32 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2025-01-28 19:16:34 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= htmlspecialchars($app_root) ?>static/libs/bootstrap/bootstrap-5.3.3.min.css">
|
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/libs/jquery/jquery.min.js"></script>
|
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/libs/bootstrap/popper.min.js"></script>
|
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/libs/bootstrap/bootstrap-4.0.0.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
|
2024-10-04 11:18:28 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= htmlspecialchars($app_root) ?>static/css/main.css">
|
2025-01-23 12:06:36 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= htmlspecialchars($app_root) ?>static/css/messages.css">
|
2025-01-28 19:16:34 +00:00
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/js/messages.js"></script>
|
2025-02-10 17:18:15 +00:00
|
|
|
<?php if (isset($currentUser)) { ?>
|
2024-08-07 14:41:56 +00:00
|
|
|
<script>
|
|
|
|
// restore sidebar state before the page is rendered
|
|
|
|
(function () {
|
|
|
|
var savedState = localStorage.getItem('sidebarState');
|
|
|
|
if (savedState === 'collapsed') {
|
|
|
|
document.documentElement.classList.add('sidebar-collapsed');
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
</script>
|
2025-02-10 17:18:15 +00:00
|
|
|
<?php } ?>
|
2025-01-28 19:16:34 +00:00
|
|
|
<?php if ($page === 'logs') { ?>
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?= htmlspecialchars($app_root) ?>static/css/logs.css">
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ($page === 'profile') { ?>
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?= htmlspecialchars($app_root) ?>static/css/profile.css">
|
|
|
|
<?php } ?>
|
2024-09-27 06:49:50 +00:00
|
|
|
<?php if ($page === 'agents') { ?>
|
2025-01-26 16:05:29 +00:00
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/js/agents.js"></script>
|
2024-10-09 11:53:57 +00:00
|
|
|
<?php } ?>
|
2025-01-28 19:16:34 +00:00
|
|
|
<?php if ($page === 'graphs') { ?>
|
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/libs/chartjs/chart.umd.min.js"></script>
|
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/libs/chartjs/moment.min.js"></script>
|
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/libs/chartjs/chartjs-adapter-moment.min.js"></script>
|
|
|
|
<script src="<?= htmlspecialchars($app_root) ?>static/libs/chartjs/chartjs-plugin-zoom.min.js"></script>
|
2024-09-27 06:49:50 +00:00
|
|
|
<?php } ?>
|
2024-06-28 17:05:32 +00:00
|
|
|
<title>Jilo Web</title>
|
2024-10-04 11:18:28 +00:00
|
|
|
<link rel="icon" type="image/x-icon" href="<?= htmlspecialchars($app_root) ?>static/favicon.ico">
|
2024-06-28 17:05:32 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2025-01-26 16:05:29 +00:00
|
|
|
<div id="messages-container" class="container-fluid mt-2"></div>
|
2025-01-24 09:48:37 +00:00
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<?php if (isset($messages) && is_array($messages)): ?>
|
|
|
|
<?php foreach ($messages as $msg): ?>
|
2025-02-16 08:18:26 +00:00
|
|
|
<?= Feedback::render($msg['category'], $msg['key'], $msg['custom_message'] ?? null) ?>
|
2025-01-24 09:48:37 +00:00
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php endif; ?>
|
2025-01-06 09:13:28 +00:00
|
|
|
</div>
|
2025-01-24 09:48:37 +00:00
|
|
|
</div>
|
2025-01-26 17:07:07 +00:00
|
|
|
</div>
|