Added login functionality and login required

This commit is contained in:
2025-05-31 12:05:53 +02:00
parent c30d32b10f
commit 1ac625ccbd
10 changed files with 251 additions and 79 deletions

2
app.py
View File

@@ -12,7 +12,7 @@ app.register_blueprint(dash_blueprint, url_prefix="/dash")
# Default app route
@app.route("/")
def home():
return redirect(url_for("auth.demo"))
return redirect(url_for("auth.login"))
if __name__ == "__main__":