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.
authentic2-beid/src/authentic2_beid/templates/beid/login_form.html

20 lines
440 B
HTML

{% load i18n %}
<div id="login-ssl">
<p>
{% trans "Use your Belgian identity card to log in." %}
</p>
<p>
{% trans "Please connect the card reader and put your identity card in" %}
</p>
<form method="post" action="">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" name="{{ submit_name }}" value="{% trans "Log in" %}"/>
{% if cancel %}
<input type="submit" name="cancel" value="{% trans 'Cancel' %}"/>
{% endif %}
</form>
</div>