authentic/src/authentic2_auth_fc/templates/authentic2_auth_fc/unlink.html

37 lines
1.3 KiB
HTML

{% extends "authentic2_auth_fc/base.html"%}
{% load static %}
{% load i18n gadjo %}
{% block content %}
<p>
{% blocktrans trimmed %}
You're about to delete the link between your user account and FranceConnect.
{% endblocktrans %}
</p>
<p>
{% blocktrans trimmed %}
Deleting this link won't delete your user account. However, once the link with
FranceConnect is deleted, it is no more possible to use FranceConnect to automatically log
in to your user account. It is still possible to link your user account again, using the
“FranceConnect” button on your account page.
{% endblocktrans %}
</p>
{% if no_password %}
<p>
{% blocktrans trimmed %}
On your next authentications, you will have to type in a password. Clicking the “Unlink”
button here will prompt you to pick this new password. For obvious security reasons, please
pick a different one than the password(s) on your FranceConnect providers.
{% endblocktrans %}
</p>
{% endif %}
<form method="post">
{% csrf_token %}
{{ form|with_template }}
<div class="buttons">
<button class="submit-button" name="unlink">{% trans "Unlink" %}</button>
<button class="cancel-button" name="cancel" formnovalidate>{% trans "Cancel" %}</button>
</div>
</form>
{% endblock %}