{% extends "yrk_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 }}

{% blocktrans %}If you are participating in a course at http://site.uit.no/ and are seeing this page, you must log in at site.uit.no first. If you have already done so click here to try logging in again. If it is still not working, make sure that you do not have cookies disabled.{% endblocktrans %}

{% endblock %}