27 lines
853 B
HTML
27 lines
853 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="{{ url_for('static', path='/style.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="header-container">
|
|
<h1>Node Monitoring System</h1>
|
|
<p>Total Nodes: <span id="node-count">0</span></p>
|
|
<p>Service UUID: <code>{{ service_uuid }}</code></p> <!-- Always display service UUID -->
|
|
</div>
|
|
|
|
<div id="node-grid-container">
|
|
<p class="loading-message">Loading node data...</p>
|
|
</div>
|
|
|
|
<script>
|
|
// Pass the base path for API calls if mounted under a subpath
|
|
window.API_BASE_PATH = "{{ root_path }}";
|
|
</script>
|
|
<script src="{{ url_for('static', path='/script.js') }}"></script>
|
|
</body>
|
|
</html>
|