{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block content %}

{% trans "You may now login with your username and password." %}

{% if not user.is_authenticated %} {% trans "Login now" %} {% else %} {% trans "Home" %} {% endif %}
{% endblock %}