{% extends "base.html" %} {% block title %}Consent{% endblock %} {% block content %} <dl> <dt>User</dt> <dd>{{ user }}</dd> <dt>Client</dt> <dd>{{ client }}</dd> </dl> <form method="POST" action="/consent"> {{ form.hidden_tag() }} {{ form.accept }} </form> {% endblock %}