mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 15:10:22 +00:00
17 lines
937 B
PHP
17 lines
937 B
PHP
<!-- logging tab -->
|
|
<div class="tab-pane fade" id="openvpnlogging">
|
|
<h4 class="mt-3 mb-3"><?php echo _("Logging") ?></h4>
|
|
<p><?php echo _("Enable this option to log <code>openvpn</code> activity.") ?></p>
|
|
|
|
<div class="form-check form-switch">
|
|
<input class="form-check-input" id="log-openvpn" type="checkbox" name="log-openvpn" value="1" <?php echo $logEnable ? ' checked="checked"' : "" ?> aria-describedby="log-openvpn">
|
|
<label class="form-check-label align-middle" for="log-openvpn"><?php echo _("Enable logging") ?></label>
|
|
<input type="button" class="btn btn-outline btn-warning btn-sm align-top ms-2" id="js-clearopenvpn-log" value="<?php echo _("Clear log"); ?>" />
|
|
</div>
|
|
<div class="row">
|
|
<div class="mb-3 col-md-8 mt-2">
|
|
<textarea class="logoutput text-secondary" id="openvpn-log"><?php echo htmlspecialchars($logOutput, ENT_QUOTES); ?></textarea>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.tab-pane -->
|
|
|