This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cut-publik-theme/templates/authentic2_auth_fc/unlink.html

37 lines
1.2 KiB
HTML

{% extends "authentic2_auth_fc/base.html"%}
{% load staticfiles %}
{% load i18n %}
{% block content %}
<div class="a2-container">
<p>
{% blocktrans %}
You're about to delete the link between your user account and your FranceConnect account.
{% endblocktrans %}
</p>
<p>
{% blocktrans %}
Deleting this link won't delete those accounts. However, once all the links with FranceConnect
are deleted, it's no more possible to use the FranceConnect to automatically login to your
user account. It is still possible to link those accounts once again by using the
button FranceConnect on the login page.
{% endblocktrans %}
</p>
{% if no_password %}
<p>
{% blocktrans %}
Your user account has no password and removing this link may make this account inaccessible.
To avoid this situation, please provide a password.
{% endblocktrans %}
</p>
{% endif %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" name="unlink" value="{% trans "Unlink" %}"/>
<input type="submit" name="cancel" value="{% trans "Cancel" %}"/>
</form>
</div>
{% endblock %}