Change password + New base (#10)

* created a new Base template to test with

* Changed out the base and added a new password page

* Password change works, UI needs redisgn
This commit is contained in:
Stef
2025-10-08 15:28:50 +02:00
committed by GitHub
parent b379b59eec
commit cef3d63ca2
7 changed files with 190 additions and 73 deletions

View File

@@ -0,0 +1,9 @@
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="alert alert-info">
{% for message in messages %}
<p>{{ message }}</p>
{% endfor %}
</div>
{% endif %}
{% endwith %}