2019-11-21 02:18:24 +08:00
|
|
|
{% extends 'default.html' %}
|
|
|
|
|
|
|
|
{% set active_page = "dashboard" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Block an alias
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block default_content %}
|
|
|
|
|
2020-05-12 05:22:06 +08: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-21 02:18:24 +08:00
|
|
|
|
2020-05-12 05:22:06 +08:00
|
|
|
<form method="post">
|
|
|
|
<button class="btn btn-warning">Confirm</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2019-11-21 02:18:24 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|