{% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {% import 'partial/profile_field.html' as profile %} {%- block title -%} {%- trans %}User creation{% endtrans -%} {%- endblock -%} {% block content %}

{% if logo_url %} {% endif %}
{% trans %}User creation{% endtrans %}
{% trans %}Create a new user account{% endtrans %}

{% trans %} Before you can create an account, please enter a valid email address. Then you will receive an email containing a link that will allow you to finish your registration. {% endtrans %}
{% call fui.render_form(form, class_="profile-form info") %} {% if "email" in form %} {{ profile.render_field(form.email) }} {% endif %}
{{ _("Login page") }} {% if has_smtp and has_password_recovery %} {{ _("Forgotten password") }} {% endif %}
{% endcall %}
{% endblock %}