mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
84fcc9ddc4
* notify user about a cycle email * prettify notification detail page
29 lines
605 B
HTML
29 lines
605 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 not reversible, please confirm');">
|
|
<button class="btn btn-outline-danger">Delete</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|