mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
31 lines
605 B
HTML
31 lines
605 B
HTML
{% extends 'default.html' %}
|
|
|
|
{% set active_page = "dashboard" %}
|
|
|
|
{% block title %}
|
|
Block an alias
|
|
{% endblock %}
|
|
|
|
{% block default_content %}
|
|
|
|
<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>
|
|
|
|
<form method="post">
|
|
<button class="btn btn-warning">Confirm</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|