{% extends "community/_base.html" %} {% from "macros/box.html" import m_box_content, m_box_menu %} {% import "community/members_macros.html" as macros with context %} {%- from "community/macros.html" import wizard_steps -%} {% from "macros/user.html" import m_user_link, m_user_photo %} {% block memberscontent %} {% call m_box_content(_("Members Wizard")) %} {{ wizard_steps(steps,3) }}

{{ _("New Users Accounts") }}

{{ _("The members below are not registered on the platform. Please create their accounts so that they can join the community.") }}


{{ _("Complete the information below to create a new user. They will receive a mail instruction to connect.") }}

{% set table_id = uuid() %} {% set nb_new_accounts = (new_accounts|length) %} {% if new_accounts %} {% for user in new_accounts %} {% endfor %} {% endif %}
Email First Name * Last Name * Role
{{ user.email }}
{{ _("Save") }}
{{ csrf.field() }}
{% endcall %} {% endblock %} {% block sidebar %} {%- set actions = actions.for_category('members:menu') %} {%- if actions %} {% call m_box_menu() %} {% endcall %} {%- endif %} {% endblock %}