diff --git a/backend/main.py b/backend/main.py index f1934db..01f4c48 100644 --- a/backend/main.py +++ b/backend/main.py @@ -1544,6 +1544,56 @@ async def presse(): return FileResponse(f"{STATIC_DIR}/presse.html", headers={"Cache-Control": "max-age=3600"}) +@app.get("/konto-loeschen") +async def konto_loeschen(): + html = """ + +
+ + +Du kannst dein Ban Yaro-Konto und alle zugehörigen Daten dauerhaft löschen.
+So löschst du dein Konto:
++ Alternativ kannst du die Löschung per E-Mail an + support@banyaro.app beantragen. +
+ +""" + return HTMLResponse(content=html, headers={"Cache-Control": "max-age=3600"}) + + # /partner — Influencer-Landingpage # ------------------------------------------------------------------ @app.get("/partner")