a768238439546ffce8580125d072f0a1c9ca6ae2
[wolnelektury.git] / src / wolnelektury / templates / piston / authorize_token.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3
4 {% block titleextra %}{% trans "Authorize access to Wolne Lektury" %}{% endblock %}
5
6 {% block body %}
7   <h1>{% trans "Authorize access to Wolne Lektury" %}</h1>
8
9   <div class="normal-text">
10     <p>
11       {% blocktrans %}Confirm to authorize access to Wolne Lektury as user <strong>{{ user}}</strong>.{% endblocktrans %}
12     </p>
13
14     <form action="{% url 'piston.authentication.oauth_user_auth' %}" method="POST">
15       {% csrf_token %}
16       {{ form.as_p }}
17       <button type="submit">Confirm</button>
18     </form>
19   </div>
20 {% endblock %}