Files
drive-health/templates/index.html
T

28 lines
577 B
HTML
Raw Normal View History

2024-01-20 01:27:10 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-01-20 01:40:55 +02:00
<link rel="stylesheet" href="/static/style.css">
<title>Drive Health Dashboard</title>
2024-01-20 01:27:10 +02:00
</head>
<body>
2024-01-20 01:40:55 +02:00
<div class="container">
<h1>Drive Health Dashboard</h1>
<table>
<thead>
2024-01-20 18:35:50 +02:00
2024-01-20 01:40:55 +02:00
</thead>
2024-01-20 02:06:27 +02:00
<tbody id="disk-table-body">
2024-01-20 18:35:50 +02:00
2024-01-20 01:40:55 +02:00
</tbody>
</table>
2024-01-20 02:06:27 +02:00
<hr>
2024-01-20 01:40:55 +02:00
</div>
2024-01-20 02:06:27 +02:00
<script src="/static/main.js"></script>
2024-01-20 01:27:10 +02:00
</body>
2024-01-20 01:40:55 +02:00
</html>