{% extends 'userena/base_userena.html' %} {% load i18n %} {% load txcommontags %} {% block content_title %} {% endblock %} {% block extrajs%} {{ block.super }} {% endblock %} {% block content_main %}

{% trans "Sign in" %}

{% csrf_token %}
{{ form.non_field_errors }} {% for field in form %} {{ field.errors }} {% comment %} Displaying checkboxes differently {% endcomment %} {% if field.name == 'remember_me' %}
{% else %}
{{ field.label_tag }}
{{ field }}
{% endif %} {% endfor %}
{% if next %}{% endif %}
{# http://code.djangoproject.com/ticket/7239 #}
{% trans "You can also login using:" %}
    {% url socialauth_begin 'twitter' as social_twitter_url %} {% if social_twitter_url %}
  • {% endif %}
{% trans "Not yet a member?" %} {% trans "Register now!" %}
{% endblock %}