diff --git a/ietf/templates/registration/confirm_new_email.html b/ietf/templates/registration/confirm_new_email.html new file mode 100644 index 000000000..7cd0e43d9 --- /dev/null +++ b/ietf/templates/registration/confirm_new_email.html @@ -0,0 +1,20 @@ +{% extends "registration/base.html" %} + +{% block title %}Confirm new email address{% endblock %} + +{% block content %} +
Your account with login name '{{ username }}' has been updated to include the email address '{{ email }}'.
+You may now wish to edit your profile.
+{% else %} +An error has occured when attempting to add the email address '{{ email }}' to your account '{{ username }}'.
+
Your account has been successfully updated to reflect the change(s) you submitted.
+{% for email in new_emails %} +A confirmation email has been sent to {{email}}. It will be added to your account after you click on the link it contains.
+{% endfor %} +You may continue editing your profile.
+{% else %} +An error has occured when attempting to update your account.
+{% if error %}
{{ error }}
{% endif %} +{% endif %} +