app-MAIL-temp/templates/dashboard/notification.html
Agent-XD 5d6a4963a0
Small fixes (#1991)
* remove proprietary mention

* Add forum mention

* Sync activation.txt with activation.html

* Add subdomain information

* Make info look better

* Fix wording
2024-01-03 12:35:42 +01:00

19 lines
573 B
HTML

{% extends "default.html" %}
{% set active_page = "dashboard" %}
{% block title %}{{ notification.title }}{% endblock %}
{% block default_content %}
<div class="card">
<div class="card-body">
<h1 class="h3">{{ notification.title or "" }}</h1>
<div>{{ notification.message | safe }}</div>
<form method="post"
class="float-right mt-3"
onsubmit="return confirm('This operation is irreversible, please confirm');">
<button class="btn btn-outline-danger">Delete</button>
</form>
</div>
</div>
{% endblock %}