watcher/node/static/index.html
Victor Vobis d8fd0dfb73 bless
2025-09-10 20:28:27 +02:00

26 lines
977 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link href="style.css" rel="stylesheet">
</head>
<body class="background">
<div class="main-container">
<h1>Node Stats</h1>
<div class="table-container">
<table style="box-sizing: border-box; max-height: 100%; width: 100%; table-layout: fixed; border-collapse: collapse;" id='stat-table' >
<thead id="stat-table-head">
<tr style="border-bottom: 1px solid black;">
</tr>
</thead>
<tbody style="box-sizing: border-box; max-height: 100%; overflow-y: scroll;" id='stat-table-body'>
</tbody>
</table>
</div>
</div>
<script src="/app.js" ></script>
</body>
</html>