{% extends theme('base.html') %} {% import theme('macros/forms.html') as forms with context %} {% set next_url = url_for(request.endpoint, **request.view_args) if not request.routing_exception else url_for('site.home') %} {% set read_only_mode = config.READ_ONLY_MODE %} {% block content %}

{{ _('Log in') }}

{{ forms.render_fields(login_user_form, submit=_('Log in')) }}

{{ _('Forgot your password?') }} {{ _('Recover your password') }}

{% if config.SECURITY_CONFIRMABLE %}

{{ _('Confirmation instructions not received?') }} {{ _('Send the instructions again') }}

{% endif %}
{% if not read_only_mode %}

{{ _('Don\'t have an account?')}}

{{ _('Create an account') }}
{% endif %}
{% endblock %}