From 740fe629b31a6f609465a50e99ee2283e33826dd Mon Sep 17 00:00:00 2001 From: florianuhlig Date: Fri, 3 Oct 2025 00:14:11 +0200 Subject: [PATCH] With first webui --- frontend/app.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/app.py b/frontend/app.py index 31f3120..af342a6 100644 --- a/frontend/app.py +++ b/frontend/app.py @@ -12,13 +12,10 @@ def login(): if request.method == 'POST': enter_email = request.form.get('email') enter_password = request.form.get('password') - # TODO: Add your user verification logic here, e.g. check database import sqlLite.get as getter import useful.hash as hasher pwd = getter.get_password_by_email(enter_email) password = hasher.get_password_hash(enter_password) - print(pwd) - print(password) if password == pwd: return redirect(url_for('dashboard')) elif password == None: