32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>GANDALF - Network Monitor</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>GANDALF (Global Advanced Network Detection And Link Facilitator)</h1>
|
|
<p>Ubiquiti Network Management Dashboard</p>
|
|
</div>
|
|
|
|
<div class="metrics-container">
|
|
<div class="metric-card">
|
|
<h2>Network Overview</h2>
|
|
<div id="network-health">
|
|
<div class="device-status">
|
|
<span class="status-indicator"></span>
|
|
<div class="device-info">
|
|
<span class="device-name">UniFi Dream Machine Pro</span>
|
|
<span class="device-details">10.10.10.1</span>
|
|
</div>
|
|
</div>
|
|
<!-- Repeat for other devices -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="{{ url_for('static', filename='app.js') }}"></script>
|
|
</body>
|
|
</html> |