mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
11 lines
445 B
PHP
11 lines
445 B
PHP
<!-- status tab -->
|
|
<div class="tab-pane fade" id="restapistatus">
|
|
<h4 class="mt-3 mb-3"><?php echo _("RestAPI status") ;?></h4>
|
|
<p><?php echo _("Current <code>restapi.service</code> status is displayed below."); ?></p>
|
|
<div class="row">
|
|
<div class="mb-3 col-md-8 mt-2">
|
|
<textarea class="logoutput text-secondary"><?php echo htmlspecialchars($serviceLog, ENT_QUOTES); ?></textarea>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.tab-pane -->
|
|
|