mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
5d6a4963a0
* remove proprietary mention * Add forum mention * Sync activation.txt with activation.html * Add subdomain information * Make info look better * Fix wording
19 lines
573 B
HTML
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 %}
|