{% extends "zerver/portico_signup.html" %} {% load i18n %} {% comment %} 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. {% endcomment %} {% block customhead %} {{ block.super }} {% endblock %} {% block for_you %}for {% if company_name %} {{company_name}} {% else %} __________ {% endif %} {% endblock %} {% block portico_content %}

{% trans "You're almost there. We just need you to do one last thing" %}.

{% trans 'Tell us a bit about yourself' %}.

{% csrf_token %}

{{ email }}

{% if lock_name %}

{{ full_name }}

{% else %} {% if form.full_name.errors %} {% for error in form.full_name.errors %}
{{ error }}
{% endfor %} {% endif %} {% endif %}
{% if password_auth_enabled %}
{% if full_name %} {% trans '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 %}