datatracker/ietf/templates/registration/confirm_profile_update.html
Lars Eggert cc723ce449 More fixes.
- Legacy-Id: 19899
2022-01-31 19:17:50 +00:00

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