add templates for allauth

This commit is contained in:
Jan Dittberner 2015-01-17 23:08:41 +01:00
parent 7d6e0386d8
commit 92b6e8a8cb
44 changed files with 476 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{% extends "socialaccount/base.html" %}
{% load i18n %}
{% block title %}{{ block.super }} - {% trans "Login Cancelled" %}{% endblock title %}
{% block page_title %}{% trans "Login Cancelled" %}{% endblock page_title %}
{% block content %}
{% url 'account_login' as login_url %}
<p>{% blocktrans %}You decided to cancel logging in to our site using one of your existing accounts. If this was a mistake, please proceed to <a href="{{login_url}}">sign in</a>.{% endblocktrans %}</p>
{% endblock %}