From c112d34db0abaa32640d1653d83d25f256818824 Mon Sep 17 00:00:00 2001 From: SimolZimol <70102430+SimolZimol@users.noreply.github.com> Date: Fri, 6 Sep 2024 13:42:38 +0200 Subject: [PATCH] modified: app.py new file: templates/about.html new file: templates/contact.html new file: templates/faq.html new file: templates/help.html --- app.py | 20 ++++++++++++++++++++ templates/about.html | 22 ++++++++++++++++++++++ templates/contact.html | 22 ++++++++++++++++++++++ templates/faq.html | 27 +++++++++++++++++++++++++++ templates/help.html | 26 ++++++++++++++++++++++++++ 5 files changed, 117 insertions(+) create mode 100644 templates/about.html create mode 100644 templates/contact.html create mode 100644 templates/faq.html create mode 100644 templates/help.html diff --git a/app.py b/app.py index 65eecd0..338e75a 100644 --- a/app.py +++ b/app.py @@ -108,6 +108,26 @@ def login(): session['oauth_state'] = state return redirect(authorization_url) +@app.route("/about") +def about(): + """Zeigt eine öffentliche Über uns Seite an.""" + return render_template("about.html") + +@app.route("/contact") +def contact(): + """Zeigt eine öffentliche Kontaktseite an.""" + return render_template("contact.html") + +@app.route("/faq") +def faq(): + """Zeigt eine öffentliche FAQ Seite an.""" + return render_template("faq.html") + +@app.route("/help") +def help_page(): + """Zeigt eine öffentliche Hilfeseite an.""" + return render_template("help.html") + @app.route("/callback") def callback(): """Verarbeitet den OAuth2-Rückruf von Discord.""" diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..c52ca85 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,22 @@ + + +
+ + +Welcome to Multus Bot, the AI-powered Discord bot created by SimolZimol. We aim to make managing Discord servers easier with AI tools and advanced functionalities.
+If you have any questions or need support, feel free to contact us at support@multusbot.com.
+Find answers to the most commonly asked questions about the Multus Bot.
+Need help? Here are some resources to get you started with Multus Bot.
+