* 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
18 lines
825 B
HTML
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 %} |