2022-03-03 18:57:40 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self';">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">
|
|
|
|
|
|
|
|
<title>FreeDATA - Live Log</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- bootstrap -->
|
|
|
|
<script src="../node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- chart.js -->
|
|
|
|
|
2022-11-09 20:07:40 +00:00
|
|
|
|
|
|
|
<nav class="navbar fixed-top bg-light">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<input type="checkbox" class="btn-check" id="enable_filter_info" autocomplete="off" checked>
|
2022-11-09 11:59:35 +00:00
|
|
|
<label class="btn btn-outline-info" for="enable_filter_info">info</label>
|
|
|
|
|
|
|
|
<input type="checkbox" class="btn-check" id="enable_filter_debug" autocomplete="off">
|
|
|
|
<label class="btn btn-outline-primary" for="enable_filter_debug">debug</label>
|
|
|
|
|
|
|
|
<input type="checkbox" class="btn-check" id="enable_filter_warning" autocomplete="off">
|
|
|
|
<label class="btn btn-outline-warning" for="enable_filter_warning">warning</label>
|
|
|
|
|
|
|
|
<input type="checkbox" class="btn-check" id="enable_filter_error" autocomplete="off">
|
|
|
|
<label class="btn btn-outline-danger" for="enable_filter_error">error</label>
|
|
|
|
|
2022-11-09 20:07:40 +00:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container-fluid mt-5"></div>
|
2022-03-03 18:57:40 +00:00
|
|
|
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">Timestamp</th>
|
2022-11-09 20:07:40 +00:00
|
|
|
<th scope="col">Type</th>
|
|
|
|
<th scope="col">Area</th>
|
2022-03-03 18:57:40 +00:00
|
|
|
<th scope="col">Log entry</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="log">
|
|
|
|
<!--
|
|
|
|
<tr>
|
|
|
|
<th scope="row">1</th>
|
|
|
|
<td>Mark</td>
|
|
|
|
<td>Otto</td>
|
|
|
|
<td>@mdo</td>
|
|
|
|
</tr>
|
|
|
|
-->
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-11-09 20:07:40 +00:00
|
|
|
|
|
|
|
</div>
|
2022-03-03 18:57:40 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|