{% extends "zerver/portico_signup.html" %} {% comment %} Allow the user to accept the terms, creating an email record of that fact. {% endcomment %} {% block for_you %}for {% if company_name %} {{company_name}} {% else %} __________ {% endif %} {% endblock %} {% block portico_content %}

(Welcome! We think you'll like it here.)


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

Accept the Zulip terms of service

{% csrf_token %}

{{ email }}

{% if form.full_name.errors %} {% for error in form.full_name.errors %}
{{ error }}
{% endfor %} {% endif %}
{% if form.terms.errors %} {% for error in form.terms.errors %}
{{ error }}
{% endfor %} {% endif %}


{% endblock %}