19 lines
801 B
HTML
19 lines
801 B
HTML
{# bs5ok #}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
{% load origin textfilters %}
|
|
{% block title %}Profile update successful{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Profile update successful</h1>
|
|
<p class="my-3">
|
|
Your account has been updated to reflect the changes you submitted.
|
|
</p>
|
|
{% for email in email_confirmations %}
|
|
<p class="alert alert-success my-3">
|
|
<b>A confirmation email has been sent to {{ email|linkify }}.</b> The email will be activated after you click on the link it contains.
|
|
</p>
|
|
{% endfor %}
|
|
<a class="btn btn-primary"
|
|
href="{% url "ietf.ietfauth.views.profile" %}">Edit profile</a>
|
|
{% endblock %} |