Mu2_Deploy/ui/general/health.html

50 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Health Status</title>
<meta charset="utf-8">
<link href="../base1/bootstrap.min.css" type="text/css" rel="stylesheet">
<script src="../base1/cockpit.js"></script>
<script src="../base1/jquery-3.7.1.min.js"></script>
</head>
<body>
<div class="container mt-5 mb-5">
<div class="row">
<div class="col-12">
<h2 class="fw-bold">Health Status</h2>
<p>At a glance view of the status of the drone.</p>
</div>
</div>
</div>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">drone</th>
<th scope="col">Mu1</th>
<th scope="col">Mu2</th>
<th scope="col">Mu3</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">IP Address</th>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<th scope="row">Docker Container</th>
<td>Container1</td>
<td>Container2</td>
<td>Container3</td>
</tr>
</tbody>
</table>
<script src="health.js"></script>
</body>
</html>