domovoy/templates/layout.php

71 lines
3.0 KiB
PHP

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Домовой</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/app.css" rel="stylesheet">
</head>
<body>
<div class="d-flex" id="wrapper">
<!-- Sidebar -->
<nav class="bg-dark text-white border-end" id="sidebar-wrapper" style="width: 250px; min-height: 100vh;">
<div class="sidebar-heading px-3 border-bottom border-secondary">
<a href="/dashboard" class="text-white text-decoration-none">
<h4 class="mb-0">Домовой</h4>
</a>
</div>
<div class="list-group list-group-flush">
<a href="/dashboard" class="list-group-item list-group-item-action bg-dark text-white border-0">
Dashboard
</a>
<a href="/discovery" class="list-group-item list-group-item-action bg-dark text-white border-0">
Сканирование сети
</a>
<a href="/discoveries" class="list-group-item list-group-item-action bg-dark text-white border-0">
Находки
</a>
<a href="/devices" class="list-group-item list-group-item-action bg-dark text-white border-0">
Устройства
</a>
<span class="list-group-item bg-dark text-white-50 border-0">
Сервисы <small class="text-secondary">позже</small>
</span>
<span class="list-group-item bg-dark text-white-50 border-0">
Документы <small class="text-secondary">позже</small>
</span>
<span class="list-group-item bg-dark text-white-50 border-0">
Настройки <small class="text-secondary">позже</small>
</span>
</div>
</nav>
<!-- Page Content -->
<div id="page-content-wrapper" class="w-100">
<!-- Top Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark border-bottom border-secondary">
<div class="container-fluid">
<div class="ms-auto d-flex align-items-center">
<span class="text-light me-3"><?= htmlspecialchars($username ?? 'User') ?></span>
<form method="POST" action="/logout" class="d-inline">
<button type="submit" class="btn btn-outline-light btn-sm">Logout</button>
</form>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="container-fluid p-4">
<?php if (isset($content)): ?>
<?= $content ?>
<?php endif; ?>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="/assets/js/domovoy.js"></script>
</body>
</html>