{% extends 'userena/base_userena.html' %} {% load i18n %} {% block title %}{% trans "Log in" %}{% endblock %} {% block content %}
{% csrf_token %}
{% trans "Log in to add and edit projects" %} {{ form.non_field_errors }} {% for field in form %} {{ field.errors }} {% comment %} Displaying checkboxes differently {% endcomment %} {% if field.name == 'remember_me' %}
{% else %} {% include "userena/_bootstrap_field.html" with property=field %} {% endif %} {% endfor %}
{% trans "Don't have an account? Sign up here!" %}
{% trans "Forgot your password?" %}
{% if next %}{% else %}{% endif %}
{% endblock %}