{% extends "tickets/base.html" %} {% load i18n %} {% block content %} {% if form.errors %}

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

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

{% blocktrans with user.username as username %}You are currently logged in as {{ username }}{% endblocktrans %}

{% trans "Logout" %}

{% endif %}

{% blocktrans with "http://www.evolution-events.nl" as ee_url and "http://www.evolution-events.nl/forum" as forum_url and "http://www.evolution-events.nl/forum/phpbb/profile.php?mode=register" as register_url %} You can login with your Evolution Events forum account. If you don't have a forum account yet, first register. {% endblocktrans %}

Note that this is the login of the regular forums, not the dorestad forum!

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