14 lines
482 B
HTML
14 lines
482 B
HTML
|
{% extends "email_change/base.html" %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block title %}{% trans "Verification email sent" %}{% endblock %}
|
||
|
|
||
|
|
||
|
{% block ce_content %}
|
||
|
<h2>{% trans "Verification email sent" %}</h2>
|
||
|
<div id="content-main">
|
||
|
<p>{% trans "An email containing a verification link has been sent to your new email address." %}</p>
|
||
|
<p>{% trans "Follow the instructions in this email in order to successfully change your current email address." %}</p>
|
||
|
{% endblock %}
|
||
|
|