This commit is contained in:
2025-11-11 10:57:13 +01:00
parent ff7d0a9137
commit 4b85d12941
4 changed files with 160 additions and 5 deletions

View File

@@ -391,7 +391,7 @@
<div class="user-section">
<div class="user-info">
<h3>{{ session.username }}</h3>
<p>Member since {{ user.created_at.strftime('%b %Y') if user else '' }}</p>
<p>Member since {{ user.created_at.strftime('%b %Y') if 'user' in locals() else '' }}</p>
</div>
<a href="{{ url_for('logout') }}" class="btn btn-outline-light">Logout</a>
</div>