first commit

This commit is contained in:
maher
2025-10-30 13:13:41 +01:00
commit ecd64aad53
404 changed files with 82238 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{% for notice in app.flashes('primary') %}
<div class="alert alert-primary" role="alert">
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
</div>
{% endfor %}
{% for notice in app.flashes('success') %}
<div class="alert alert-success" role="alert">
<font size="4">
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
</font>
</div>
{% endfor %}
{% for notice in app.flashes('danger') %}
<div class="alert alert-danger" role="alert">
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
</div>
{% endfor %}
{% for notice in app.flashes('warning') %}
<div class="alert alert-warning" role="alert">
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
</div>
{% endfor %}
{% for notice in app.flashes('info') %}
<div class="alert alert-info" role="alert">
<b>{{ notice.title }}:</b> {{ notice.message|raw }}
</div>
{% endfor %}