{% extends "oahpa.html" %} {% load i18n %} {# clear sidebar #} {% block sidebar %}{% endblock %} {% block content %}
{% if form.errors %}

{% trans "Your username and password didn't match. Please try again." %}

{% endif %} {% if user.is_authenticated %}

You are currently logged in. {% trans "Log out?" %}

{% else %}

{% trans "Please log in to continue..." %}

{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}
{% endblock %}