fargo/fargo/templates/fargo/oauth2/authorize.html

23 lines
586 B
HTML

{% extends "fargo/base.html" %}
{% load i18n %}
{% block content %}
<div id="fargo-oauth2-authorize">
{% block form-intro %}
{% blocktrans %}
<p>The service {{ oauth2_client }} want to get one of your documents.</p>
{% endblocktrans %}
{% endblock %}
{% block form %}
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form.as_p }}
<div class="buttons">
<button name="submit">{% trans "Choose" %}</button>
<button name="cancel">{% trans "Cancel" %}</button>
</div>
</form>
{% endblock %}
</div>
{% endblock %}