modified: app.py
This commit is contained in:
20
app.py
20
app.py
@@ -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."""
|
||||||
|
|||||||
Reference in New Issue
Block a user