2024-02-24 14:15:38 +13:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% from 'bootstrap/form.html' import render_form %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col col-login mx-auto">
|
|
|
|
<div class="card mt-5">
|
|
|
|
<div class="card-body p-6">
|
|
|
|
<div class="card-title text-center">{{ _('Unsubscribed') }}</div>
|
|
|
|
<p>{{ _('You have unsubscribed from the email newsletter. We might email you for other reasons, though.') }}</p>
|
2024-09-24 12:04:29 +12:00
|
|
|
<p><a href="{{ url_for('user.user_settings') }}">{{ _('More email settings') }}</a></p>
|
2024-02-24 14:15:38 +13:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|