18 lines
459 B
PHP
18 lines
459 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>View Log: <?= esc($fileName) ?></title>
|
|
</head>
|
|
<body>
|
|
<h1>Log File: <?= esc($fileName) ?></h1>
|
|
|
|
<pre style="background-color: #f5f5f5; padding: 15px; border: 1px solid #ccc;">
|
|
<?= esc($content) ?>
|
|
</pre>
|
|
|
|
<a href="<?= base_url('util/log_list') ?>">Back to Logs</a>
|
|
</body>
|
|
</html>
|