2021-02-05 14:50:50 +01:00

17 lines
327 B
HTML

{% extends "layout.html" %}
{% from "_macros.html" import render_field_with_errors, render_field %}
{% block content %}
<h1>{{ _('Revoke OAuth2 token') }}</h1>
<h2>{{ oauth2_token.client.client_name }}</h2>
<form action="" method="POST">
{{ form.hidden_tag() }}
{{ render_field(form.submit) }}
</form>
{% endblock %}