mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2024-12-13 03:46:14 +01:00
32 lines
983 B
HTML
32 lines
983 B
HTML
<!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>
|