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

{{ _('Account Creation') }}

{{ _('Please enter the necessary information to create an account.') }}

{{ registration_form.csrf_token() }}
{% if registration_form.name.errors %} {{ registration_form.name.errors[0] }} {% elif config['ENFORCE_SPLIT_NAMES'] and (registration_form.name.data is none or ', ' not in registration_form.name.data[1:-1]) %} {{ _('Please enter your name as: surname, given names.') }} {% endif %}
{% for error in registration_form.password.errors %} {{ error }} {% endfor %}
{% for error in registration_form.password2.errors %} {{ error }} {% endfor %}
{% endblock %}