{% extends 'accounts/authentication_base.html' %} {% load i18n %} {% block accounts_actionblock %}
{% trans "Sign in" %}

{% trans "Create a new account" %}

{% csrf_token %}
{% trans "About you…" %}
{% include "accounts/_includes/basic_block.html" with field=form.first_name %}
{% include "accounts/_includes/basic_block.html" with field=form.last_name %}
{% include "accounts/_includes/basic_block.html" with field=form.preferred_language icon="fa-flag" %}
{% trans "Your credential information…" %}
{% include "accounts/_includes/basic_block.html" with field=form.username icon="fa-user" %} {% include "accounts/_includes/basic_block.html" with field=form.email icon="fa-at" %}
{% include "accounts/_includes/password_block.html" with password=form.password1 %}
{% include "accounts/_includes/password_block.html" with password=form.password2 %}
{% trans "Cancel" %}
{% endblock %}