django-oidc-provider/docs/templates.rst
2016-02-11 17:24:34 -03:00

35 lines
767 B
ReStructuredText

.. _templates:
Templates
#########
Add your own templates files inside a folder named ``templates/oidc_provider/``.
You can copy the sample html here and edit them with your own styles.
**authorize.html**::
<h1>Request for Permission</h1>
<p>Client <strong>{{ client.name }}</strong> would like to access this information of you ...</p>
<form method="post" action="{% url 'oidc_provider:authorize' %}">
{% csrf_token %}
{{ hidden_inputs }}
<ul>
{% for scope in params.scope %}
<li>{{ scope | capfirst }}</li>
{% endfor %}
</ul>
<input name="allow" type="submit" value="Authorize" />
</form>
**error.html**::
<h3>{{ error }}</h3>
<p>{{ description }}</p>