django-oidc-provider/oidc_provider/templates/oidc_provider/authorize.html

21 lines
519 B
HTML
Raw Permalink Normal View History

2015-01-15 21:05:06 +00:00
<h1>Request for Permission</h1>
2014-12-19 15:27:43 +00:00
2015-01-15 21:05:06 +00:00
<p>Client <strong>{{ client.name }}</strong> would like to access this information of you ...</p>
2014-12-19 15:27:43 +00:00
2015-02-18 18:07:22 +00:00
<form method="post" action="{% url 'oidc_provider:authorize' %}">
2015-01-15 21:06:36 +00:00
{% csrf_token %}
2014-12-19 15:27:43 +00:00
{{ hidden_inputs }}
2014-12-19 15:27:43 +00:00
2015-01-15 21:06:36 +00:00
<ul>
{% for scope in scopes %}
<li><strong>{{ scope.name }}</strong> <br><i>{{ scope.description }}</i></li>
{% endfor %}
2015-01-15 21:05:06 +00:00
</ul>
2014-12-19 15:27:43 +00:00
2015-01-15 21:06:36 +00:00
<input type="submit" value="Decline" />
<input name="allow" type="submit" value="Authorize" />
2014-12-19 15:27:43 +00:00
2015-01-15 21:05:06 +00:00
</form>