<h1class="block-center-heading">{% trans "Authorize" %} {{ application.name }}?</h1>
{% csrf_token %}
{% for field in form %}
{% if field.is_hidden %}
{{ field }}
{% endif %}
{% endfor %}
<p>{% trans "The above application requests the following permissions from your account:" %}</p>
<ul>
{% for scope in scopes_descriptions %}
<li>{{ scope }}</li>
{% endfor %}
</ul>
<p>{% trans "Please click the 'Allow' button to grant these permissions to the above application. Otherwise, to withhold these permissions, please click the 'Cancel' button." %}
</p>
{{ form.errors }}
{{ form.non_field_errors }}
<divclass="control-group">
<divclass="controls">
<buttontype="submit"class="btn btn-authorization-cancel"name="cancel"/>{% trans "Cancel" %}</button><buttontype="submit"class="btn btn-authorization-allow"name="allow"value="Authorize"/>{% trans "Allow" %}</button>