mirror of
https://github.com/pi-hole/web.git
synced 2025-12-25 21:16:21 +00:00
19 lines
549 B
PHP
19 lines
549 B
PHP
<?php
|
|
require "header.php";
|
|
?>
|
|
<!-- Title -->
|
|
<div class="page-header">
|
|
<h1>Output the last lines of the pihole.log file (live)</h1>
|
|
</div>
|
|
|
|
<div class="checkbox"><label><input type="checkbox" name="active" checked id="chk1"> Automatic scrolling on update</label></div>
|
|
<pre id="output" style="width: 100%; height: 100%;"></pre>
|
|
<div class="checkbox"><label><input type="checkbox" name="active" checked id="chk2"> Automatic scrolling on update</label></div>
|
|
|
|
<?php
|
|
require "footer.php";
|
|
?>
|
|
|
|
|
|
<script src="js/pihole/taillog.js"></script>
|