pyfedi/app/templates/user/newsletter_unsubscribed.html

18 lines
662 B
HTML
Raw Normal View History

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>
<p><a href="{{ url_for('user.change_settings') }}">{{ _('More email settings') }}</a></p>
</div>
</div>
</div>
</div>
{% endblock %}