{% extends 'auth/master.twig' %} {% from 'auth/macros.twig' import auth_login %} {% block content %} {{ auth_login( auth_username|default(''), auth_register_message|default(auth_login_error|default('')), auth_register_message is defined ) }} {% if not prevent_registration %}
Register
{% if auth_register_error is defined %}
{{ auth_register_error }}
{% endif %}
{% endif %} {% if not prevent_password_reset %}
Forgot password
{% if auth_forgot_error is defined %}
{{ auth_forgot_error }}
{% endif %}
{% endif %} {% endblock %}