Chapter 6

This commit is contained in:
2023-06-03 17:53:32 +02:00
parent 428e022bd4
commit 4dd7d11190
10 changed files with 184 additions and 4 deletions

View File

@@ -13,6 +13,7 @@
{% if current_user.is_anonymous %}
<a href="{{ url_for('login') }}">Login</a>
{% else %}
<a href="{{ url_for('user', username = current_user.username) }}">Profile</a>
<a href="{{ url_for('logout') }}">Logout</a>
{% endif %}
</div>