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:
10
app.py
10
app.py
@@ -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."""
|
||||
|
||||
Reference in New Issue
Block a user