LocalCDN-Firefox-Chrome-Brave/pages/logging/logging.html

32 lines
983 B
HTML
Raw Normal View History

2021-02-21 19:55:31 +01:00
<!DOCTYPE html>
<html>
<head>
<title>LocalCDN Logging</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="../base.css">
<link rel="stylesheet" type="text/css" href="logging.css">
<script src="logging.js"></script>
</head>
<body>
<h1>SimpleLog</h1>
<div class="button-group">
<div id="btn-reload" class="button">Refresh</div>
<div id="btn-delete" class="button">Delete</div>
</div>
<p id="no-logging-content">no data</p>
<table id="logging-content">
<thead>
<tr>
<th>#</th>
<th>Initiator</th>
<th>Resource</th>
<th>Redirected to</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>