e54f7013622248acfbd69fa4874652c05f020806
[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 'oauth_user_auth' %}" method="POST">
15       {% csrf_token %}
16       {{ form.as_p }}
17       <button type="submit">{% trans "Confirm" %}</button>
18     </form>
19   </div>
20 {% endblock %}