{% extends "base.html" %} {% block title %} {{ _("Unsubscribe") }} {% endblock %} {% block content %}

{{ self.title() }}

{{ _("This will blacklist an email address, preventing ContentDB from ever sending emails to it - including password resets.") }}

{% if form %} {% from "macros/forms.html" import render_field, render_submit_field %}
{{ form.hidden_tag() }}

{{ _("Please enter the email address you wish to blacklist.") }} {{ _("You will then need to confirm the email") }}

{{ render_field(form.email, tabindex=220) }} {{ render_submit_field(form.submit, tabindex=280) }}
{% else %}

{{ _("You may now unsubscribe.") }}

{% if user %}

Unsubscribing may prevent you from being able to sign into the account '{{ user.display_name }}'.

ContentDB will no longer be able to send "forget password" and other essential system emails. Consider editing your email notification preferences instead.

{% else %}

You won't be able to use this email with ContentDB anymore.

{% endif %}
{% if user %} Edit Notification Preferences {% endif %}
{% endif %} {% endblock %}