{% import 'macros/forms.html' as forms with context %} {% set section_class = 'form' %} {% set read_only_mode = config.READ_ONLY_MODE %} {% block main_content %}
{{ _('Sign In') }} {{ forms.render(login_user_form, exclude=[login_user_form.submit]) }}

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

{% if config.SECURITY_CONFIRMABLE %}

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

{% endif %}
{% if not read_only_mode %}
{{ _('Sign up') }}
{% endif %}
{% endblock %}