User registration v1 added

This commit is contained in:
Josako
2024-04-23 08:55:08 +02:00
parent fd25c39395
commit 60bc75010d
5 changed files with 81 additions and 9 deletions

View File

@@ -14,6 +14,14 @@
<div><a href="/register">Register</a></div>
<div><a href="/login">Login</a></div>
<hr>
{% with messages = get_flashed_messages()%}
{% if messages%}
{% for message in messages%}
<p>{{message}}</p>
{%endfor%}
{%endif%}
{%endwith%}
<hr>
{% block content %}{% endblock %}
<!-- Optional JavaScript -->