{% extends 'layout/base.html' %} {% from 'forms/_form.html' import form_header, form_footer, form_rows, form_row, form_fieldset %} {% block page_class %}fixed-width-standalone-text-page{% endblock %} {% block content %} {{ form_header(form) }}

{% trans %}To continue using the platform, you must agree to the updated terms. Please take a moment to read the agreements before you continue.{% endtrans %}

{% if tos and not tos_url %} {% call form_fieldset(_('Terms of Service')) %}
{{ tos|sanitize_html }}
{% endcall %} {% endif %} {% if privacy_policy and not privacy_policy_url %} {% call form_fieldset(_('Privacy Policy')) %}
{{ privacy_policy|sanitize_html }}
{% endcall %} {% endif %}

{% trans %}Last updated:{% endtrans %} {{ terms_effective_date|format_date(timezone=session.tzinfo) }}

{{ form_row(form.accept_terms, skip_label=true) }} {% call form_footer(form) %} {% endcall %} {% endblock %}