mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
4a046c5f6f
* fix error when user logs out, go back to /dashboard and has the server error * reformat files. Not run ruff on migrations/ and .venv --------- Co-authored-by: Son NK <son@simplelogin.io>
23 lines
698 B
HTML
23 lines
698 B
HTML
{% extends "default.html" %}
|
|
|
|
{% set active_page = "dashboard" %}
|
|
{% block title %}Deactivate an alias{% endblock %}
|
|
{% block default_content %}
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h3">Deactivate alias</h1>
|
|
<p>
|
|
You are about to deactivate 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. You will always be able to re-activate it untill you will decide to delete it.
|
|
</p>
|
|
<form method="post">
|
|
<button class="btn btn-warning">Confirm</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|