implement client users

This commit is contained in:
2025-09-10 20:53:13 +03:00
parent 45e14c9536
commit b8c163455c
3 changed files with 90 additions and 1 deletions

View File

@@ -12,6 +12,7 @@
<nav>
{% if session.get('user') %}
<a href="{{ url_for('apps_list') }}">Home</a>
<a href="{{ url_for('user_create') }}">Create User</a>
<a href="{{ url_for('logout') }}">Logout</a>
{% endif %}
</nav>