datatracker/ietf/templates/registration/confirm_profile_update.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

18 lines
789 B
HTML

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