1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-11-25 08:38:59 +00:00

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(): def welcome():
return render_template("welcome.html") return render_template("welcome.html")
@app.route("/about")
def about():
return render_template("about.html")
@app.route("/login") @app.route("/login")
def show_login_page(): def show_login_page():
return render_template("login.html", signup = False) return render_template("login.html", signup = False)