2022-06-29 11:28:26 +02:00
{% extends "default.html" %}
2019-11-20 19:18:24 +01:00
{% set active_page = "dashboard" %}
2024-01-03 12:35:42 +01:00
{% block title %}Deactivate 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" >
2024-01-03 12:35:42 +01:00
< h1 class = "h3" > Deactivate alias< / h1 >
2020-05-11 23:22:06 +02:00
< p >
2024-01-03 12:35:42 +01:00
You are about to deactivate 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 >
2024-01-05 14:30:07 +01:00
< p >
After this, you will stop receiving all emails sent to this alias, please confirm. You will always be able to re-activate it untill you will decide to delete it.
< / 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 %}