68 lines
2.8 KiB
PHP
68 lines
2.8 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 p-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="/devices" class="list-group-item list-group-item-action bg-dark text-white border-0">
|
|
Устройства
|
|
</a>
|
|
<a href="/services" class="list-group-item list-group-item-action bg-dark text-white border-0">
|
|
Сервисы
|
|
</a>
|
|
<a href="/documents" class="list-group-item list-group-item-action bg-dark text-white border-0">
|
|
Документы
|
|
</a>
|
|
<a href="/settings" class="list-group-item list-group-item-action bg-dark text-white border-0">
|
|
Настройки
|
|
</a>
|
|
</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">
|
|
<span class="navbar-brand text-light">Домовой</span>
|
|
<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>
|
|
</body>
|
|
</html>
|