This commit is contained in:
2025-01-04 00:33:04 -05:00
parent a746140e8b
commit 109dff1cd0
5 changed files with 92 additions and 1 deletions

18
templates/index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>GANDALF Network Monitor</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<h1>GANDALF Network Monitor</h1>
<div class="metrics-container">
<div id="network-health"></div>
<div id="latency"></div>
<div id="bandwidth"></div>
</div>
</div>
<script src="{{ url_for('static', filename='app.js') }}"></script>
</body>
</html>