{% extends 'userena/base_userena.html' %} {% load i18n %} {% block title %}{% trans "Signin" %}{% endblock %} {% block content %}
{% csrf_token %}
{% trans "Signin" %} {{ form.non_field_errors }} {% for field in form %} {{ field.errors }} {# Displaying checkboxes differently #} {% if field.name == 'remember_me' %}

{% else %}

{{ field.label_tag }} {{ field }}

{% endif %} {% endfor %}

{% trans "Forgot your password?" %}

{% if next %}{% endif %}
{% endblock %}