added app route for about.html

This commit is contained in:
Lynne Megido 2019-08-30 22:30:59 +10:00
parent b02a635d9e
commit 17690226f0

View File

@ -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)