datatracker/ietf/templates/registration/confirm_profile_update.html
Robert Sparks 9b4903e2e6
fix: Fix incorrect "GDPR" features/terminology. Fixes #4521. (#4587)
* fix: remove help/personal-information and the prompt-for-consent email management command.

* fix: remove gdpr treatment except for consent checkbox. Rename Submit.

* fix: drom the consent column from Person and Person.History

* fix: remove the consent boolean. Reorganize the account info form.

* chore: reorder migrations
2022-10-18 13:27:19 -05:00

18 lines
825 B
HTML

{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% extends "base.html" %}
{% load origin textfilters %}
{% block title %}Account information update successful{% endblock %}
{% block content %}
{% origin %}
<h1>Account information 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 account information</a>
{% endblock %}