login and dashboard pages

This commit is contained in:
2025-04-16 16:44:21 +03:00
parent 8997e45621
commit 41a71cdc5b
15 changed files with 426 additions and 0 deletions

6
py_app/run.py Normal file
View File

@@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)