2015-01-17 23:08:41 +01:00
|
|
|
{% extends "socialaccount/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
2023-04-16 22:11:32 +02:00
|
|
|
{% block title %}{{ block.super }} - {% translate "Login Cancelled" %}{% endblock title %}
|
|
|
|
{% block page_title %}{% translate "Login Cancelled" %}{% endblock page_title %}
|
2015-01-17 23:08:41 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2023-04-16 22:11:32 +02:00
|
|
|
{% url 'account_login' as login_url %}
|
|
|
|
<p>{% blocktranslate trimmed %}
|
|
|
|
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>.
|
|
|
|
{% endblocktranslate %}</p>
|
|
|
|
{% endblock %}
|