Files
H1502_website/dmesg.php
Martijn Scheepers 8dd7dbd045 more red spacer fixes
2017-11-16 15:29:06 +01:00

25 lines
704 B
PHP

<?php include('partialpage/header.php');?>
<?php include('partialpage/sidebar.php');?>
<!-- !PAGE CONTENT! -->
<div class="w3-main" style="margin-left:340px;margin-right:40px">
<!-- dmesg output -->
<div class="w3-container" id="dmesg" style="margin-top:75px">
<h1 class="w3-jumbo"><b>dmesg</b></h1>
<br>
<div style="border:5px solid red; width:100px" class="w3-round"></div>
<br>
<p>Dmesg output from system.</p>
<div class="w3-section">
<textarea class="w3-input w3-border" type="text" name="dmesg" rows="50">
<?php echo passthru('dmesg');?>
</textarea>
</div>
</div>
<!-- End page content -->
</div>
<?php include('partialpage/footer.php');?>