{% extends "zerver/portico_signup.html" %} {% 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 %}

You're almost there. We just need you to do one last thing.

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 %} 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 %}