Initial App Commit with Login and Auth

This commit is contained in:
2025-02-11 02:16:46 +01:00
parent 8d88d265a8
commit 348f95d4f5
17 changed files with 927 additions and 3 deletions

13
app/views/users.html Normal file
View File

@ -0,0 +1,13 @@
{% extends "layouts/app.html" %}
{% block title %}Users List{% endblock %}
{% block content %}
<a href="{{ url_for('main.logout_route') }}">Logout</a>
<h2>Users List</h2>
<ul>
{% for user in users %}
<li>{{ user.username }} - {{ user.email }} - {{ user.password }}</li>
{% endfor %}
</ul>
{% endblock %}