modified: app.py

This commit is contained in:
SimolZimol
2024-10-24 15:40:11 +02:00
parent 6a57e00bf7
commit bbee3b484b

20
app.py
View File

@@ -130,6 +130,26 @@ def landing_page():
"""Landing Page""" """Landing Page"""
return render_template("landing.html") return render_template("landing.html")
@app.route("/about")
def about():
"""Öffentliche Über-uns-Seite"""
return render_template("about.html")
@app.route("/contact")
def contact():
"""Öffentliche Kontaktseite"""
return render_template("contact.html")
@app.route("/faq")
def faq():
"""Öffentliche FAQ-Seite"""
return render_template("faq.html")
@app.route("/help")
def help_page():
"""Öffentliche Hilfeseite"""
return render_template("help.html")
@app.route("/login") @app.route("/login")
def login(): def login():
"""Startet den Discord-OAuth2-Flow.""" """Startet den Discord-OAuth2-Flow."""