27 lines
718 B
HTML
27 lines
718 B
HTML
|
{#
|
||
|
FIXME: This template should live under security/ if the app templates would override extension
|
||
|
templates…
|
||
|
#}
|
||
|
{% extends 'base.html' %}
|
||
|
{% from '_macros.html' import field %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{% trans %}Login{% endtrans %}</h1>
|
||
|
<form method="post" class="ui form">
|
||
|
{{ login_user_form.hidden_tag() }}
|
||
|
|
||
|
{% if login_user_form.errors %}
|
||
|
{% for error in login_user_form.errors %}
|
||
|
{{ error }}
|
||
|
{% endfor %}
|
||
|
<br>
|
||
|
{% endif %}
|
||
|
|
||
|
{{ field(login_user_form.email) }}
|
||
|
{{ field(login_user_form.password) }}
|
||
|
{{ field(login_user_form.remember) }}
|
||
|
|
||
|
<button type="submit" class="ui primary button">{% trans %}Login{% endtrans %}</button>
|
||
|
</form>
|
||
|
{% endblock %}
|