10 lines
498 B
HTML
10 lines
498 B
HTML
{% 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 %}
|