23 lines
659 B
HTML
23 lines
659 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Node Monitor</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="header-container">
|
|
<h1>Node Monitoring System</h1>
|
|
<p>Total Nodes: <span id="node-count">0</span></p>
|
|
<p id="service-uuid" style="display: none;">Service UUID: <code>{{ service_uuid }}</code></p>
|
|
</div>
|
|
|
|
<div id="node-grid-container">
|
|
<p class="loading-message">Loading node data...</p>
|
|
</div>
|
|
|
|
<script src="/static/script.js"></script>
|
|
</body>
|
|
</html>
|