{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Login" %}{% endblock %} {% block content %}

{% trans "Login" %}

{% trans "You need to login or register to continue" %}

{% csrf_token %} {% bootstrap_form_errors login_form type='all' layout='inline' %} {% bootstrap_field login_form.username layout="horizontal" %} {% bootstrap_field login_form.password layout="horizontal" %}
{% trans "Lost password?" %}
{% csrf_token %} {% bootstrap_form_errors local_registration_form type='all' layout='inline' %} {% bootstrap_field local_registration_form.username layout="horizontal" %} {% bootstrap_field local_registration_form.email layout="horizontal" %} {% bootstrap_field local_registration_form.password layout="horizontal" %} {% bootstrap_field local_registration_form.password_repeat layout="horizontal" %}
{% if global_registration_form %}
{% csrf_token %} {% bootstrap_form_errors global_registration_form type='all' layout='inline' %} {% bootstrap_field global_registration_form.email layout="horizontal" %} {% bootstrap_field global_registration_form.password layout="horizontal" %} {% bootstrap_field global_registration_form.password_repeat layout="horizontal" %}
{% endif %}
{% endblock %}