-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogs.html
More file actions
42 lines (39 loc) · 1.41 KB
/
logs.html
File metadata and controls
42 lines (39 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Activity Logs</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<div id="header-placeholder"></div>
<main>
<div class="container">
<div id="message" class="message"></div>
<div id="logsList">
<table>
<thead>
<tr>
<th>Timestamp</th>
<th>Action</th>
<th>Event Name</th>
<th>Event Location</th>
<th>IP Address</th>
</tr>
</thead>
<tbody id="logsTableBody">
</tbody>
</table>
</div>
</div>
</main>
<div id="footer-placeholder"></div>
<script src="load-header.js"></script>
<script type="module" src="logs.js"></script> </body>
</html>