92 lines
2.9 KiB
HTML
92 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}A/D Infrastructure Control{% endblock %}</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
|
|
<style>
|
|
body {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.stat-card {
|
|
border-left: 4px solid #007bff;
|
|
}
|
|
|
|
.stat-card.danger {
|
|
border-left-color: #dc3545;
|
|
}
|
|
|
|
.stat-card.success {
|
|
border-left-color: #28a745;
|
|
}
|
|
|
|
.stat-card.warning {
|
|
border-left-color: #ffc107;
|
|
}
|
|
|
|
.service-running {
|
|
color: #28a745;
|
|
}
|
|
|
|
.service-stopped {
|
|
color: #dc3545;
|
|
}
|
|
|
|
.refresh-btn {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="/">
|
|
<i class="bi bi-shield-check"></i> A/D Control
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/"><i class="bi bi-speedometer2"></i> Dashboard</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/services"><i class="bi bi-hdd-stack"></i> Services</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/attacks"><i class="bi bi-bullseye"></i> Attacks</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/alerts"><i class="bi bi-exclamation-triangle"></i> Alerts</a>
|
|
</li>
|
|
</ul>
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/logout"><i class="bi bi-box-arrow-right"></i> Logout</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container-fluid">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
|
|
</html> |