{# The invitation acceptation page. This page is displayed to users who have clicked on invitation links sent by mail (or by other media). It displays a basic account creation form. :param form: The account creation form. :type form: :class:`~canaille.core.endpoints.forms.JoinForm` #} {% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {% import 'core/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 features.has_smtp and features.has_password_recovery %} {{ _("Forgotten password") }} {% endif %}
{% endcall %}
{% endblock %}