mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Added standard div wrapper to new tab
This commit is contained in:
parent
7b93326478
commit
c88d027ec6
1 changed files with 13 additions and 8 deletions
|
@ -134,14 +134,19 @@ function DisplayHostAPDConfig(){
|
|||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="logoutput">
|
||||
<?php
|
||||
if($arrHostapdConf['LogEnable'] == 1) {
|
||||
$log = file_get_contents('/tmp/hostapd.log');
|
||||
echo 'Logfile contents:<br /><textarea class="logoutput">'.$log.'</textarea>';
|
||||
} else {
|
||||
echo "Logfile output not enabled";
|
||||
}
|
||||
?>
|
||||
<h4>Logfile output</h4>
|
||||
<div class="row">
|
||||
<div class="form-group col-md-8">
|
||||
<?php
|
||||
if($arrHostapdConf['LogEnable'] == 1) {
|
||||
$log = file_get_contents('/tmp/hostapd.log');
|
||||
echo '<br /><textarea class="logoutput">'.$log.'</textarea>';
|
||||
} else {
|
||||
echo "<br />Logfile output not enabled";
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="advanced">
|
||||
<h4>Advanced settings</h4>
|
||||
|
|
Loading…
Reference in a new issue