{% extends "zerver/portico_signup.html" %} {# Gather other user information, after having confirmed their email address. Form is validated both client-side using jquery-validate (see signup.js) and server-side. #} {% block customhead %} {{ super() }} {% endblock %} {% block for_you %}for {% if company_name %} {{company_name}} {% else %} __________ {% endif %} {% endblock %} {% block portico_content %}

{{ _("You're almost there. We just need you to do one last thing") }}.

{{ _('Tell us a bit about yourself') }}.

{{ csrf_input }}

{{ email }}

{% if lock_name %}

{{ full_name }}

{% else %} {% if form.full_name.errors %} {% for error in form.full_name.errors %}
{{ error }}
{% endfor %} {% endif %} {% endif %}
{% if creating_new_team %}
{% if form.realm_name.errors %} {% for error in form.realm_name.errors %}
{{ error }}
{% endfor %} {% endif %}
{{ _('You can change this later on the admin page.') }}
{% endif %} {% if password_auth_enabled %}
{% if full_name %} {{ _('This is used for mobile applications and other tools that require a password') }}. {% endif %} {% if form.password.errors %} {% for error in form.password.errors %}
{{ error }}
{% endfor %} {% endif %}
{% endif %} {% if not_voyager %}
{% if form.terms.errors %} {% for error in form.terms.errors %}
{{ error }}
{% endfor %} {% endif %}
{% endif %}

{% endblock %}