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 %} +
+

Confirm new email address

+{% if success %} +

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 }}'.

+

+ +{% endif %} +
+{% endblock %} diff --git a/ietf/templates/registration/confirm_profile_update.html b/ietf/templates/registration/confirm_profile_update.html new file mode 100644 index 000000000..17d8ac03f --- /dev/null +++ b/ietf/templates/registration/confirm_profile_update.html @@ -0,0 +1,19 @@ +{% extends "registration/base.html" %} + +{% block title %}Confirm Profile Update{% endblock %} + +{% block content %} +
+

Confirm Confirm Profile Update

+{% if success %} +

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 %} +
+{% endblock %}