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:
parent
b02a635d9e
commit
17690226f0
1 changed files with 4 additions and 0 deletions
4
webui.py
4
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)
|
||||
|
|
Loading…
Reference in a new issue