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

Registration Form

Please fill the Form

{{ 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 %}