{% extends "base.html" %} {% load wagtailcore_tags %} {% wagtail_site as current_site %} {% block content %}
{% trans "Log in" as headingtext %} {% include "patterns/basics/headings/sp_variations/heading.html" with type="component" htmltag="h1" title=headingtext %} {% trans "Not a member yet?" as headingtext %} {% trans "Sign up here" as linktext %} {% include "patterns/basics/headings/sp_variations/heading.html" with type="micro" htmltag="p" title=headingtext hyperlink=REGISTRATION_URL linktitle=linktext %}
{% csrf_token %} {% if form.errors %}

{% trans "Your username and password do not match. Please try again." %}

{% endif %}
{{form.username}}
{{form.password}}
{% url "forgot_password" as link %} {% trans "Forgot PIN" as buttontext %} {% include "patterns/basics/buttons/sp_variations/button.html" with type="hyperlink" hyperlink=link text=buttontext %}
{% endblock %}