authentic2-auth-fedict/src/authentic2_auth_fedict/templates/authentic2_auth_fedict/profile.html

25 lines
899 B
HTML

{% load i18n static %}
<div>
<img src="{% static "authentic2_auth_fedict/img/beid_image_mini.png" %}" alt="">
{% if user_saml_identifiers %}
<p>{% blocktrans %}This account is linked to your eID card.{% endblocktrans %}</p>
<p>
{% blocktrans %}
You may want to unlink your account, although you will not be able to
connect to your account using your eID card (without re-doing the linking
procedure).
{% endblocktrans %}
</p>
<p><a class="button" href="{% url "fedict-unlink" %}">{% trans "Unlink my account" %}</a></p>
{% else %}
<p>
{% blocktrans %}
You may want to link your existing account to your eID. In order to
do so, you will either need your eID card and its card reader
or your list of personal tokens.
{% endblocktrans %}
</p>
<p><a class="button" href="{% url "fedict-login" %}?next=/accounts/">{% trans "Link my account to my eID card" %}</a></p>
{% endif %}
</div>