app-MAIL-temp/templates/dashboard/unsubscribe.html

21 lines
588 B
HTML
Raw Normal View History

{% extends "default.html" %}
{% set active_page = "dashboard" %}
{% block title %}Block an alias{% endblock %}
{% block default_content %}
2020-05-11 23:22:06 +02:00
<div class="card">
<div class="card-body">
<h1 class="h3">Block alias</h1>
2020-05-11 23:22:06 +02:00
<p>
You are about to block the alias
<a href="mailto:{{ alias }}" target="_blank">{{ alias }}</a>
2020-05-11 23:22:06 +02:00
</p>
<p>After this, you will stop receiving all emails sent to this alias, please confirm.</p>
2020-05-11 23:22:06 +02:00
<form method="post">
<button class="btn btn-warning">Confirm</button>
</form>
</div>
</div>
{% endblock %}