mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
56 lines
1.2 KiB
HTML
56 lines
1.2 KiB
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block status %}
|
|
|
|
{% if status.is_setup %}
|
|
{{ block.super }}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block configuration %}
|
|
|
|
{% if status.is_setup %}
|
|
|
|
<h3>{% trans "Profile" %}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
To connect to {{ box_name }}'s VPN, you need to download a
|
|
profile and feed it to an OpenVPN client on your mobile or
|
|
desktop machine. OpenVPN Clients are available for most
|
|
platforms. Click "Learn more..." above for recommended clients
|
|
and instructions on how to configure them.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Profile is specific to each user of {{ box_name }}. Keep it a
|
|
secret.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<form class="form form-profile" method="post"
|
|
action="{% url 'openvpn:profile' %}">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-primary"
|
|
value="{% trans "Download my profile" %}"/>
|
|
</form>
|
|
|
|
{% if not using_ecc %}
|
|
{% include "migrate_to_ecc.html" %}
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|