Files
gandalf/index.html

19 lines
593 B
HTML
Raw Normal View History

2025-01-04 00:33:04 -05:00
<!DOCTYPE html>
<html>
<head>
2025-01-04 01:13:54 -05:00
<title>GANDALF (Global Advanced Network Detection And Link Facilitator)</title>
2025-01-04 00:33:04 -05:00
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
2025-01-04 01:13:54 -05:00
<h1>GANDALF (Global Advanced Network Detection And Link Facilitator)</h1>
2025-01-04 00:33:04 -05:00
<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>