feat: multi-user auth — per-user spaces, pbkdf2 passwords, session tokens, login page

This commit is contained in:
2026-04-01 08:39:16 +02:00
parent 94dd871031
commit 1466a1529f
7 changed files with 468 additions and 24 deletions
+5
View File
@@ -29,6 +29,11 @@ async def index():
return FileResponse(str(FRONTEND_DIR / "index.html"))
@app.get("/login")
async def login_page():
return FileResponse(str(FRONTEND_DIR / "login.html"))
@app.get("/app.js")
async def appjs():
return FileResponse(str(FRONTEND_DIR / "app.js"))