raspap-webgui/templates/openvpn/configs.php

37 lines
2.1 KiB
PHP
Raw Normal View History

2021-02-06 09:18:27 +01:00
<div class="tab-pane fade" id="openvpnconfigs">
2021-02-07 16:24:45 +01:00
<div class="row">
<div class="col-md-6">
<h4 class="mt-3 mb-3"><?php echo _("Configurations"); ?></h4>
<p id="openvpnconfigs-description" class="mb-3">
<small><?php echo _("Currently available OpenVPN client configurations are displayed below.") ?></small>
<br><small class="text-muted"><?php echo _("Activating a configuraton will restart the <code>openvpn-client</code> service.") ?></small>
</p>
<div class="openvpn-configs js-openvpn-configs-container">
<?php foreach ($clients as $client) :
if ($client == "login.conf") {
$label = file_get_meta(RASPI_OPENVPN_CLIENT_LOGIN,'#\sfilename\s(.*)');
$btn_class = "active";
} else {
$label = trim(pathinfo($client, PATHINFO_FILENAME), "_login");
$client = $label;
$btn_class = "disabled";
}
?>
<div class="row openvpn-client-row js-openvpn-client-row mt-2">
<div class="col-md-6 col-xs-5">
<label><?php echo htmlspecialchars($label, ENT_QUOTES); ?></label>
</div>
<div class="col-md-2 col-xs-2">
<button type="button" class="btn btn-outline-success <?php echo $btn_class; ?> js-activate-openvpn-client" data-record-id="<?php echo htmlspecialchars($client, ENT_QUOTES); ?>" data-toggle="modal" data-target="#ovpn-confirm-activate" /><i class="far fa-check-circle"></i></button>
</div>
<div class="col-md-2 col-xs-2">
<button type="button" class="btn btn-outline-danger js-remove-openvpn-client" data-record-id="<?php echo htmlspecialchars($client, ENT_QUOTES); ?>" data-toggle="modal" data-target="#ovpn-confirm-delete" /><i class="far fa-trash-alt"></i></button>
</div>
</div><!-- ./row openvpn -->
<?php endforeach ?>
</div><!-- /.openvpn-configs -->
<div class="mb-3"></div>
</div><!-- /.tab-pane | manage configs tab -->
2021-02-07 12:52:58 +01:00
</div>
2021-02-07 16:24:45 +01:00
</div>