{% extends theme('base.html') %} {% import 'fomanticui.html' as fui %} {% block script %} {% endblock %} {% block content %}
{% if success %}

{{ _("Invitation sent") }}

{% set email = form.mail.data %} {% trans %}This invitation link has been to {{ email }}{% endtrans %} {% trans %}If you need to provide this link by other ways than email, you can copy it there:{% endtrans %}
{% else %}

{{ _("Invitate an user") }}

{% trans %} After this form is sent, the recipient your indicated will receive an email containing an account creation link. {% endtrans %}
{{ form.hidden_tag() if form.hidden_tag }} {{ fui.render_field(form.uid, icon="user") }} {{ fui.render_field(form.mail, icon="mail") }} {{ fui.render_field(form.groups, icon="users") }}
{{ _("Create a user") }}
{% endif %}
{% endblock %}