diff --git a/__pycache__/app.cpython-39.pyc b/__pycache__/app.cpython-39.pyc new file mode 100644 index 0000000..681a08c Binary files /dev/null and b/__pycache__/app.cpython-39.pyc differ diff --git a/angela.jpg b/angela.jpg index d38d47e..52c6ddd 100644 Binary files a/angela.jpg and b/angela.jpg differ diff --git a/app.py b/app.py new file mode 100644 index 0000000..2a91eca --- /dev/null +++ b/app.py @@ -0,0 +1,41 @@ +from flask import Flask, render_template, request +import logging + +app = Flask(__name__) +app.logger.disabled = True +log = logging.getLogger('werkzeug') +log.disabled = True + + +@app.route("/", methods=["GET", "POST"]) +def trouble(): + if request.method == "POST": + name = request.form.get("name") + email = request.form.get("email") + subject = request.form.get("subject") + message = request.form.get("message") + print( + f"\n===============\nNEW INQUIRY!\n\nNAME: {name}\nEMAIL: {email}\nSUBJECT: {subject}\nINQUIRY:\n{message}\n===============\n") + return render_template("sent.html") + else: + return render_template("troubleshoot.html") + + +@app.route("/") +def indexpage(): + return render_template("index.html") + + +@app.route("/") +def commandpage(): + return render_template("command.html") + + +@app.route("/") +def faqpage(): + return render_template("faq.html") + + +@app.route("/") +def teampage(): + return render_template("team.html") diff --git a/command.html b/command.html index 99cd28d..bb745ec 100644 --- a/command.html +++ b/command.html @@ -4,56 +4,62 @@ InterHackBot - - - + + + + + + + + - - + + +
+

Commands

+
+ +
-
-

Remember to use . for the prefix to call all the commands!
+
+

Remember to use . for the prefix to call all the commands!
Whenever you forget the commands, simply put .help to get a list of all the commands.

-

- - commands - - -
+ +
+ commands +
+ + diff --git a/faq.html b/faq.html index 3384328..923f3ef 100644 --- a/faq.html +++ b/faq.html @@ -4,76 +4,85 @@ InterHackBot - - - + + + + + + + + - - - -

FAQ Page

- -
-

Why use this Bot? -

-

Our discord bot combines the many features that are highly sought during a hackathon. Computer has begun dominating our world, and the rate of hackathons will only increase. There are many hackthons that leave their organizers and participants in tears due to several issues. We provide free service to make your competition and life much smoother and organized. Our bot does have features that are already in some Discord bots, but what makes our bot unique is that we combine the features together to ensure smooth and happy coding experience!

-
- - -
-

How was InterHackBot made?

-

InterHackBot was made through the combined effort of our team to go day and night to accomplish all of our ambitious goals. We made it though python and json as we completely fell in love with the end-result.

- -
+ -
-

What was the inspiration for InterHackBot?

-

Our team observes that online hackathon can be complicated sometimes due to various reasons, including organization of information, time zone differences, etc. As a result, we created the InterHackBot
with multiple features aiming to solve all the problems we see.

-
+ - +
+

FAQ

+
-

Please go to the Troubleshoot page to report a glitch or problem if you can't revolve it.

+
+
+

Why use this Bot?

+

Our discord bot combines the many features that are highly sought during a hackathon. + Computer has begun dominating our world, and the rate of hackathons will only increase. + There are many hackthons that leave their organizers and participants in tears due to several issues. + We provide free service to make your competition and life much smoother and organized. + Our bot does have features that are already in some Discord bots, but what makes our bot unique is + that we combine the features together to ensure smooth and happy coding experience!

+
+
+

How was InterHackBot made?

+

InterHackBot was made through the combined effort of our team. It is a project that + initiated from a hackathon where our team first met. Afterward, we continue to remove bugs and make InterHackBot available to be + publicly used. We made it though python and json.

- +
+
+

What was the inspiration for InterHackBot?

+

Our team observes that online hackathon can be complicated sometimes due to various + reasons, including organization of information, time zone differences, etc. As a result, we created + the InterHackBot with multiple features aiming to solve all the problems we see.

+
-