From 17690226f004554e6476af965142ce900f1eaa82 Mon Sep 17 00:00:00 2001 From: Lynne Date: Fri, 30 Aug 2019 22:30:59 +1000 Subject: [PATCH] added app route for about.html --- webui.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webui.py b/webui.py index cf07648..57576c9 100644 --- a/webui.py +++ b/webui.py @@ -16,6 +16,10 @@ def hello(): def welcome(): return render_template("welcome.html") +@app.route("/about") +def about(): + return render_template("about.html") + @app.route("/login") def show_login_page(): return render_template("login.html", signup = False)