diff options
Diffstat (limited to 'app/views/auth.py')
-rw-r--r-- | app/views/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth.py b/app/views/auth.py index 26b8d39..0193431 100644 --- a/app/views/auth.py +++ b/app/views/auth.py @@ -25,7 +25,7 @@ def register_user(): flash_errors(form) return render_template("auth/signup.html",form=form) -@app.route("/login", methods=['GET', 'POST']) +@app.route("/signin", methods=['GET', 'POST']) def signin_user(): form = UserLogIn() if form.validate_on_submit(): |