e2444de8742bc00b082bcafde12ad91c28bc4ea3
[wolnelektury.git] / wolnelektury / templates / piston / authorize_token.html
1 {% extends "simple_base.html" %}
2 {% load i18n %}
3
4 {% block "title" %}{% trans "Authorize access to Wolne Lektury" %}{% endblock %}
5
6 {% block "body" %}
7     <h1>{% trans "Authorize access to Wolne Lektury" %}</h1>
8
9     <p>{% blocktrans %}Confirm to authorize access to Wolne Lektury as user <strong>{{ user}}</strong>.{% endblocktrans %}</p>
10
11     <form action="{% url piston.authentication.oauth_user_auth %}" method="POST">
12       {{ form.as_p }}
13       <button type="submit">Confirm</button>
14     </form>
15 {% endblock %}