Added new Templates: profile.html

Changed: requirements.txt and .gitignore
This commit is contained in:
florianuhlig
2025-10-04 23:36:00 +02:00
parent 3c9a994971
commit e4da70e942
3 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@@ -2,5 +2,6 @@
/.idea/
testing.py
/databases/
.venv
.env

View File

@@ -140,8 +140,8 @@
<div class="info-card">
<h3>Account Status</h3>
<p><strong>Status:</strong> <span style="color: #28a745;">Active</span></p>
<p><strong>Created:</strong> {{ user.created_at[:19] if user.created_at else 'Unknown' }}</p>
<p><strong>Last Updated:</strong> {{ user.updated_at[:19] if user.updated_at else 'Unknown' }}</p>
<p><strong>Created:</strong> {{ user.created_at.strftime('%Y-%m-%d %H:%M:%S') if user.created_at else 'Unknown' }}</p>
<p><strong>Last Updated:</strong> {{ user.updated_at.strftime('%Y-%m-%d %H:%M:%S') if user.updated_at else 'Unknown' }}</p>
</div>
</div>

View File

@@ -1 +1,2 @@
flask
python-dotenv