templates/zerver/accounts_accept_terms.html
{% extends "zerver/portico_signup.html" %} {% block title %}
{{ _("Accept the Terms of Service") }} | Zulip{% endblock %} {# 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 %}
{{ csrf_input }} {{ _("Email") }} {{ email }} {% if first_time_login %} {% include 'zerver/create_user/new_user_email_address_visibility.html' %} {% endif %} {% if first_time_terms_of_service_message_template %} {% include first_time_terms_of_service_message_template %} {% elif terms_of_service_message %}
{{ terms_of_service_message |safe }}
{% endif %} {% if terms_of_service %} {% include 'zerver/create_user/terms_of_service_form_field.html' %} {% if first_time_terms_of_service_message_template %} {% trans %}Subscribe me to Zulip's low-traffic newsletter (a few emails a year).{% endtrans %} {% endif %} {% endif %} {{ _('Continue') }}
{% if first_time_login %} {% include 'zerver/create_user/change_email_address_visibility_modal.html' %} {% endif %} {% endblock %}