workaround for django ticket 17111; cover in api fix
[wolnelektury.git] / wolnelektury / templates / socialaccount / login_cancelled.html
1 {% extends "base.html" %}
2
3 {% load i18n %}
4
5 {% block head_title %}{% trans "Login Cancelled" %}{% endblock %}
6
7 {% block body %}
8     
9 <h1>{% trans "Login Cancelled" %}</h1>
10
11 {% url socialaccount_login as login_url %}
12 {{ login_url }}
13
14 <p>{% blocktrans %}You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href="{{login_url}}">sign in</a>.{% endblocktrans %}</p>
15
16 {% endblock %}
17