mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
17 lines
473 B
HTML
17 lines
473 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_field_with_errors, render_field %}
|
|
{%- block title -%}
|
|
{{ _('Reset acceptance of terms of service and privacy') }}
|
|
{%- endblock -%}
|
|
{% block content %}
|
|
|
|
<h1>{{ _('Reset acceptance of terms of service and privacy') }}</h1>
|
|
|
|
<form action="" method="POST">
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field_with_errors(form.reset_for_users, ri="checkbox") }}
|
|
{{ render_field(form.submit) }}
|
|
</form>
|
|
|
|
{% endblock %}
|