stc

a simple time card webapp
git clone _git@git.brennen.work:stc.git
Log | Files | Refs | README

commit 3f40686cfffb9c06764b688f00b53997c3a1a24c
parent 1ca91548d6db761dfe7f522718ece5ee21c597e0
Author: Brennen T. Mazur <brennen@madis.cool>
Date:   Wed,  8 Feb 2023 08:06:15 -0700

fixed logout bug

Diffstat:
Mapp/routes.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/routes.py b/app/routes.py @@ -37,7 +37,7 @@ def signout(): def hello(): return render_template('index.html',ORGNAME = OrganizationName) #This implimentation of ORGNAME is messy, maybe abstract to a defPage()? -@app.route("/logout", methods=['GIT']) +@app.route("/logout", methods=['GET']) def logout(): logout_user() return redirect(url_for('login'))