{% extends "base.html" %} {% block title %}Account Creation — {{ service_name }}{% endblock %} {% block content %}

Account Creation

Please enter the necessary information in the form below.

{{ registration_form.csrf_token() }}
{% for error in registration_form.name.errors %} {{error}} {% endfor %}
{% for error in registration_form.password.errors %} {{error}} {% endfor %}
{% for error in registration_form.password2.errors %} {{error}} {% endfor %}
{% endblock %}