{% extends 'ui/base.html' %} {% load static %} {# hide breadcrumb on login page #} {% block breadcrumb %}{% endblock %} {% block title %} - Login{% endblock %} {% block header %}Login{% endblock %} {% block content %}

The service is only available to authorised users. If you need to use the service and don’t have a login ID and password, please contact the system administrator by email using the feedback link above.

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% elif form.errors %}
There were some errors with your submission. Please see below.
{% endif %}
{{ form.email.errors }} {{ form.email.label_tag }} {{ form.email }} {% if form.email.help_text %}
{{ form.email.help_text }}
{% endif %}
{{ form.password.errors }} {{ form.password.label_tag }} {{ form.password }} {% if form.password.help_text %}
{{ form.password.help_text }}
{% endif %}
{% csrf_token %}
{% endblock content %} {# Have to do this with JS because it's not easy to add autofocus attribute to HTML element :-( #} {% block js_footer %} {% endblock %}