2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2019-11-20 19:18:24 +01:00
|
|
|
|
|
|
|
{% set active_page = "dashboard" %}
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}Block an alias{% endblock %}
|
2019-11-20 19:18:24 +01:00
|
|
|
{% block default_content %}
|
|
|
|
|
2020-05-11 23:22:06 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1 class="h3">Block alias</h1>
|
2020-05-11 23:22:06 +02:00
|
|
|
<p>
|
2022-06-29 11:28:26 +02:00
|
|
|
You are about to block the alias
|
2023-08-15 16:03:04 +02:00
|
|
|
<a href="mailto:{{ alias }}" target="_blank">{{ alias }}</a>
|
2020-05-11 23:22:06 +02:00
|
|
|
</p>
|
2022-07-04 16:01:04 +02:00
|
|
|
<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>
|
2019-11-20 19:18:24 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|