FreedomBox/plinth/modules/openvpn/templates/migrate_to_ecc.html
Joseph Nuthalapati 3676fd1a87
openvpn: Improve migrate_to_ecc template
Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2020-11-14 18:29:47 -05:00

40 lines
1.1 KiB
HTML

{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load i18n %}
<h3>{% trans "Migrate to ECC" %}</h3>
<p>
{% blocktrans trimmed %}
Your OpenVPN installation is currently using RSA. Switching to the
modern Elliptic Curve Cryptography improves speed of establishing a
connection and security. This operation is irreversible. It should only take
a few minutes on most single board computers.
{% endblocktrans %}
</p>
<p>
{% blocktrans trimmed %}
All new installations of OpenVPN on {{ box_name }} will
use ECC by default. We recommend migrating as soon as possible.
{% endblocktrans %}
</p>
<p class="bg-warning">
{% blocktrans trimmed %}
<b>Warning:</b> Existing client profiles will be invalidated by this operation. All
OpenVPN users on {{ box_name }} must download their new profiles. OpenVPN
clients compatible with ECC should be used to connect to this server.
{% endblocktrans %}
</p>
<form class="form form-ecc" method="post"
action="{% url 'openvpn:ecc' %}">
{% csrf_token %}
<input type="submit" class="btn btn-primary"
value="{% trans "Migrate" %}"/>
</form>