{% extends "registration/base.html" %} {% load i18n %} {% block title %}Sign up for an account{% endblock %} {% block content %}

{% trans 'Sign up to Tribus' %}


{% trans 'After entering your user data, you can edit your profile information.' %}

{% csrf_token %}
  • {{ form.username }}
  • {{ form.first_name }} {{ form.last_name }}
  • {{ form.email }}
  • {{ form.password1 }}
{% include 'registration/form_errors.html' %}
{% endblock %}