2019-11-20 19:18:24 +01:00
|
|
|
{% 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>
|
|
|
|
<p>
|
|
|
|
You are about to block the alias <a href="mailto:{{ alias }}">{{ alias }}</a>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
After this, you will stop receiving all emails sent to this alias, please confirm.
|
|
|
|
</p>
|
2019-11-20 19:18:24 +01:00
|
|
|
|
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 %}
|
|
|
|
|