42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Log Files</title>
|
|
</head>
|
|
<body>
|
|
<h1>Log Files</h1>
|
|
|
|
<?php if (session()->getFlashdata('error')): ?>
|
|
<p style="color: red;"><?= session()->getFlashdata('error') ?></p>
|
|
<?php endif; ?>
|
|
|
|
<table border="1" cellpadding="10">
|
|
<thead>
|
|
<tr>
|
|
<th>Log File</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (!empty($logs)): ?>
|
|
<?php foreach ($logs as $log): ?>
|
|
<tr>
|
|
<td><?= esc($log) ?></td>
|
|
<td>
|
|
<a href="<?= base_url('util/view_log/' . urlencode($log)) ?>">View</a> |
|
|
<a href="<?= base_url('util/download_log/' . urlencode($log)) ?>">Download</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td colspan="2">No log files found.</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|