{% extends "oahpa.html" %} {# clear sidebar #} {% block sidebar %}{% endblock %} {% block page_class %}fixed{% endblock %} {% block page_content %}
{% if form.has_errors %}

Your username and password didn't match. Please try again.

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

You are currently logged in. Log out?

{% else %}

Please log in to continue...

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