25 lines
835 B
HTML
25 lines
835 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block title %}Confirm new email address{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Confirm new email address</h1>
|
|
|
|
{% if success %}
|
|
<p>Your account with login name {{ username }} has been updated to include the email address {{ email }}.</p>
|
|
<a class="btn btn-default" href="{% url "ietf.ietfauth.views.profile" %}">Edit profile</a>
|
|
{% else %}
|
|
<p class="alert alert-danger">An error has occured when attempting to add the email address '{{ email }}' to your account '{{ username }}'.<p>
|
|
<ul>
|
|
{% for field,msgs in error.items %}
|
|
{% for msg in msgs %}
|
|
<li><b>{{field}}</b>: {{msg}}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|