{% extends "accounts/base.html" %} {% load i18n %} {% block title %}{% trans "Login" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}

{% trans "Log In to the Site" %}

{% if user.is_authenticated %}

{% blocktrans %} You are already logged in as {{ user }}. {% endblocktrans %} {% trans "Logout?" %}

{% else %}
{% csrf_token %} {{form.as_p}}

{% trans "Forgot your password?" %}

{% trans "Click here to reset your password." %}

{% if MODULE_USERS_SELFREGISTRATION %}

{% trans "Don't have an account?" %}

{% trans "Register Now" %}

{% comment %}

{% trans "Log in with Facebook" %}

{% endcomment %} {% endif %} {% endif %} {% endblock %}