{% import 'macros/forms.html' as forms %} {% extends "auth/layout.html" %} {% block head_title_content %}{{ _('Consent') }}{% endblock %} {% block title %}{{ _('%(name)s wants to access your account', name=client.name) }}{% endblock %} {% block auth_form %}
{{ _('This will allow %(name)s to:', name=client.name) }}
{% for scope in scopes %}
{{ scope }}
{% endfor %}
{{ form.deny(class="btn border-slate-200 hover:border-slate-300 text-slate-600") }} {{ form.allow(class="btn bg-primary hover:bg-primary-hover text-white") }} {{ forms.form_csrf_token(form) }}
{% endblock %}