58 lines
2.7 KiB
HTML
58 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de" data-bs-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MeshDD-Bot Karte</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/@tabler/core@1.4.0/dist/css/tabler.min.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
</head>
|
|
<body class="antialiased">
|
|
<!-- Top Navbar -->
|
|
<nav class="top-navbar d-flex align-items-center px-3">
|
|
<button class="btn btn-link text-body p-0 me-2 d-lg-none" id="sidebarToggle">
|
|
<i class="bi bi-list fs-5"></i>
|
|
</button>
|
|
<span class="fw-bold me-auto">
|
|
<i class="bi bi-broadcast-pin text-info me-1"></i>MeshDD-Bot
|
|
<small class="text-body-secondary fw-normal" id="versionLabel"></small>
|
|
</span>
|
|
<div class="d-flex align-items-center gap-2">
|
|
<span class="d-flex align-items-center gap-1">
|
|
<span class="status-dot" id="statusDot"></span>
|
|
<small class="text-body-secondary" id="statusText">Verbinde...</small>
|
|
</span>
|
|
<small class="text-body-secondary" id="nodeCount">0 Nodes</small>
|
|
<span id="userMenu" class="d-none">
|
|
<small class="text-body-secondary me-1"><i class="bi bi-person-fill me-1"></i><span id="userName"></span></small>
|
|
<a href="/auth/logout" class="btn btn-sm btn-outline-secondary py-0 px-1" title="Abmelden">
|
|
<i class="bi bi-box-arrow-right" style="font-size:.75rem"></i>
|
|
</a>
|
|
</span>
|
|
<a href="/login" id="loginBtn" class="btn btn-sm btn-outline-info py-0 px-1 d-none">
|
|
<i class="bi bi-person" style="font-size:.75rem"></i> Login
|
|
</a>
|
|
<button class="btn btn-sm btn-outline-secondary py-0 px-1" id="themeToggle" title="Theme wechseln">
|
|
<i class="bi bi-sun-fill" id="themeIcon" style="font-size:.75rem"></i>
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<aside class="sidebar" id="sidebar"></aside>
|
|
<div class="sidebar-backdrop" id="sidebarBackdrop"></div>
|
|
|
|
<!-- Content -->
|
|
<main class="content-wrapper map-wrapper">
|
|
<div id="map"></div>
|
|
</main>
|
|
|
|
<footer id="pageFooter" class="page-footer"></footer>
|
|
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
|
<script src="/static/js/app.js"></script>
|
|
<script src="/static/js/map.js"></script>
|
|
</body>
|
|
</html>
|