{% extends 'spire/card/title_card.html' %} {% block card_title %} Register New User {% endblock %} {% block card_title_content %}
{% include 'django_glue/form/glue_field/char_field.html' with glue_model_field='user.first_name' %}
{% include 'django_glue/form/glue_field/char_field.html' with glue_model_field='user.last_name' %}
{% include 'django_glue/form/glue_field/email_field.html' with glue_model_field='user.email' %}
{% include 'django_glue/form/glue_field/password_field.html' with glue_model_field='user.password' %}
{% include 'django_glue/form/glue_field/password_field.html' with glue_field='repeat_password' x_model_value='repeat_password.value' %}
{% include 'spire/form/button/form_submit_button.html' %}
{% endblock %}