errorlogger/views/index.html

52 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2023-12-22 09:50:59 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/hammer.css"/>
<title>Logs</title>
<script src="https://cdn.jsdelivr.net/npm/fecha@4.2.3/lib/fecha.umd.min.js"></script>
<style>
.preSyntax {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }
.closed { display:inline-flex; background-image: url("tri.gif"); width:5px; height:10px;margin-right:5px;}
.open { display:inline-flex; background-image: url("tridown.gif"); width:11px; height:5px;margin-right:5px;}
</style>
</head>
<body>
<h2 class="logo">Logs</h2>
<div class="panel">
<table>
<thead class="col-12">
<tr>
<!--<th class="col-1" >EID</th>-->
<th class="col-2">Logged Time</th>
<th class="col-2">Server</th>
<th class="col-2">Incident TS</th>
<th class="col-6">Content</th>
</tr>
</thead>
<tbody id="logs">
</tbody>
</table>
</div>
</body>
<script src="app.js"></script>
</html>