Code layout change.
[wolnelektury.git] / src / wolnelektury / templates / piston / authorize_token.html
1 {% extends "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>{% blocktrans %}Confirm to authorize access to Wolne Lektury as user <strong>{{ user}}</strong>.{% endblocktrans %}</p>
11
12     <form action="{% url 'piston.authentication.oauth_user_auth' %}" method="POST">
13     {% csrf_token %}
14       {{ form.as_p }}
15       <button type="submit">Confirm</button>
16     </form>
17     </div>
18 {% endblock %}