25 lines
704 B
PHP
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');?>
|