This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# connect openvpn using profile | |
sudo openvpn --config ~/Downloads/client.ovpn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="col-12"></div> | |
<div class="col-6"> | |
<label class="text-info">{% trans %}Your chosen providers{% endtrans %}</label> | |
<ul class="list-group h-100 provider-drop-area" id="chosen"> | |
{% for provider in chosenProviders %} | |
<li class="list-group-item active p-3 mb-2 provider-drop-box" draggable="true" data-id="{{ provider.Id }}"> | |
<img class="rounded" id="provider_{{ provider.Id }}" title="{{ provider.Name }}" alt="{{ provider.Name }}" src="/assets/images/provider/{{ provider.Code|lower }}.png" draggable="false"/> | |
</li> | |
{% endfor %} |