mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
66d26a1193
* fix(build): Update docker image of Node to v20 - Open "mailto:" links in a new tab if using browser * feat(dockerfile): revert node to v10.17.0
20 lines
588 B
HTML
20 lines
588 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 }}" target="_blank">{{ 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 %}
|