Marthee commited on
Commit
da9599e
·
verified ·
1 Parent(s): 1cb3976

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -86,7 +86,7 @@ def check_password():
86
  @app.route("/mainGUI", methods=["GET", "POST"])
87
  def main_gui():
88
  if "authenticated" not in session or not session["authenticated"]:
89
- return redirect(url_for("password"))
90
  return render_template("proposed-GUI.html")
91
 
92
 
 
86
  @app.route("/mainGUI", methods=["GET", "POST"])
87
  def main_gui():
88
  if "authenticated" not in session or not session["authenticated"]:
89
+ return redirect(url_for("password_page"))
90
  return render_template("proposed-GUI.html")
91
 
92