add unathorized access flash

This commit is contained in:
csd4ni3l
2025-08-09 13:03:54 +02:00
parent dc93c229d4
commit 27636a4429
2 changed files with 16 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
{% extends "base.jinja2" %}
{% block title %}Grass Touching Unathorized{% endblock %}
{% block body %}
{% with messages = get_flashed_messages()%}
{% if messages%}
{% for message in messages%}
<p>{{message}}</p>
{%endfor%}
{%endif%}
{%endwith%}
{% endblock %}