{% extends "zerver/portico_signup.html" %} {# Allow the user to accept a TOS, creating an email record of that fact. Users only hit this page if they are coming from a migration or other update of the TOS; the registration flow has its own (nearly identical) copy of the fields below in register.html. #} {% block portico_content %} {% if special_message_template %} {% include special_message_template %} {% else %}

{{ _("There are new Terms of Service.") }}

{{ _("Accept the terms of service") }}

{% endif %}
{{ csrf_input }}

{{ email }}

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


{% endblock %}