mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
23 lines
515 B
HTML
23 lines
515 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_field %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ _('Confirmation required') }}</h1>
|
|
<div>
|
|
<form action="" method="POST">
|
|
{{ form.hidden_tag() }}
|
|
|
|
<div class="form-group form-check">
|
|
<div class="input-group">
|
|
{{ form.accept_tos(class="form-check-input")|safe }}
|
|
{{ form.accept_tos.label(class="form-check-label") }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ render_field(form.submit) }}
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|