login and dashboard pages

This commit is contained in:
2025-04-16 16:44:21 +03:00
parent 4e43c17242
commit db465d6e4e
15 changed files with 426 additions and 0 deletions

10
py_app/app/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask
def create_app():
app = Flask(__name__)
app.config['SECRET_KEY'] = 'Recticel a plecat Aquinos a falimentat Innofa a venit'
from .routes import bp
app.register_blueprint(bp)
return app