mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
16 lines
383 B
HTML
Executable File
16 lines
383 B
HTML
Executable File
{% extends "socialaccount/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Login Cancelled" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% trans "Login Cancelled" %}</h1>
|
|
|
|
{% url 'account_login' as login_url %}
|
|
|
|
<p>{% blocktrans %}Login was cancelled. If this was a mistake, please proceed to <a href="{{login_url}}">sign in</a>.{% endblocktrans %}</p>
|
|
|
|
{% endblock %}
|