19 lines
581 B
HTML
19 lines
581 B
HTML
{% extends "email_change/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Email confirmation" %}{% endblock %}
|
|
|
|
|
|
{% block coltype %}login{% endblock %}
|
|
|
|
{% block content_title %}
|
|
<h1>{% trans "Email confirmation failed" %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block doccontent %}
|
|
<div id="content-main">
|
|
<p>{% trans "This confirmation code has either expired or is invalid." %}</p>
|
|
<p>{% trans "The requested email address change has failed." %}</p>
|
|
<p>{% trans "Please, try to change it again in your account settings." %}</p>
|
|
</div>
|
|
{% endblock %} |