{% extends 'core/base.html' %} {% load i18n %} {% block content %}

{% trans "Create account" %}

{% trans "You were invited to my2dos. Create your account to continue." %}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endblock %}