security_logs.php


<h2>Security Logs</h2>
<p>History of account activity (login attempts, emails sent to you, registration, etc). We currently only show the last 100 entries and the timezone may not be the same as yours.</p>
<table border=1 style="border-collapse:collapse;"><thead><tr><th>Action</th><th>IP</th><th>User Agent</th><th>Time/Date</th></thead>
<tbody>
<?php foreach ($package->get_user()->security_logs() as $index=>$entry): ?>
<tr>
    <td><?=$entry['action']?></td>
    <td><?=$entry['ip']?></td>
    <td><?=$entry['user_agent']?></td>
    <td><?=$entry['created_at']?></td>
<?php endforeach; ?>
</tbody>
</table>