From d67248c6cab9145ad88d5c16584b58abc7055676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marina=20J=C3=A4ntti?= Date: Wed, 1 Nov 2023 02:45:15 +0200 Subject: Just initial structure and testing out cookies --- routes.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 routes.py (limited to 'routes.py') diff --git a/routes.py b/routes.py new file mode 100644 index 0000000..09ba156 --- /dev/null +++ b/routes.py @@ -0,0 +1,30 @@ +from app import app +from flask import render_template,session + +@app.route("/") +def index(): + return app.send_static_file("index.html") + +@app.route("/pages/info.html") +def info(): + return render_template("info.html") + +@app.route("/pages/create.html") +def create(): + if "nick" not in session: + return render_template("nick.html") + return render_template("create.html") + +@app.route("/pages/answer.html") +def answer(): + if "nick" not in session: + return render_template("nick.html") + return render_template("answer.html") + +@app.route("/pages/analyse.html") +def analyse(): + return render_template("analyse.html") + +@app.route("/pages/moderate.html") +def moderate(): + return render_template("moderate.html") -- cgit v1.2.3