diff options
author | Marius Peter <marius.peter@tutanota.com> | 2022-05-16 21:11:52 +0200 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2022-05-16 21:11:52 +0200 |
commit | eac5bb765c8d609d3b7eb31316228f8058581796 (patch) | |
tree | 71858ed6cef43bb5dea24de1222b3c828d93b821 /app/modules/auth | |
parent | 196c3bbf8a140f962845c51e22f409aa6b4d7473 (diff) |
Lil fixes.
Diffstat (limited to 'app/modules/auth')
-rw-r--r-- | app/modules/auth/routes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/modules/auth/routes.py b/app/modules/auth/routes.py index dd9e396..d0aee0c 100644 --- a/app/modules/auth/routes.py +++ b/app/modules/auth/routes.py @@ -62,7 +62,7 @@ def register(): db.session.commit() flash(f"Created user {req['name_first']} {req['name_last']} successfully.") return redirect(url_for("main.home")) - return render_template("register.html", form=form) + return render_template("modules/register.html", form=form) @auth.route("/logout") |