modified: app.py

modified:   templates/footer.html
	modified:   templates/landing.html
	new file:   templates/privacy_policy.html
	new file:   templates/terms_of_service.html
This commit is contained in:
SimolZimol
2025-08-24 14:18:42 +02:00
parent eb4ea0f6b8
commit a00f0f9008
5 changed files with 850 additions and 3 deletions

10
app.py
View File

@@ -893,6 +893,16 @@ def global_admin_dashboard():
return render_template("global_admin_dashboard.html", user_info=g.user_info, bot_running=bot_running)
return redirect(url_for("user_landing_page"))
@app.route("/terms-of-service")
def terms_of_service():
"""Zeigt die Terms of Service Seite an."""
return render_template("terms_of_service.html")
@app.route("/privacy-policy")
def privacy_policy():
"""Zeigt die Privacy Policy Seite an."""
return render_template("privacy_policy.html")
@app.route("/logout")
def logout():
"""Meldet den Benutzer ab."""