Files
test-auth/app/templates/piston/authorize_token.html

20 lines
694 B
HTML

{% extends "base.html" %}
{% block title %}OAuth Access Authorization{% endblock %}
{% block content %}
<h1>Access Authorization</h1>
<p>You have come here because you are in the process of allowing a external application to access your private Auth data. If you are not, then please close this window. Otherwise, please confirm below if you wish to give access to your private Auth data. This can be revoked at any time from the main Auth panel.</p>
<form action="{% url piston.authentication.oauth_user_auth %}" method="POST">
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
<button type="submit">Confirm</button>
</form>
{% endblock %}