2013-11-11 19:01:40 +00:00
|
|
|
{% 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 %}
|
|
|
|
|
2013-11-11 19:09:41 +00:00
|
|
|
{% block doccontent %}
|
2013-11-11 19:01:40 +00:00
|
|
|
<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 %}
|