chg: [update v6.0.1] login lowercase
Some checks are pending
CI / ail_test (3.7) (push) Waiting to run
CI / ail_test (3.8) (push) Waiting to run
CI / ail_test (3.10) (push) Waiting to run
CI / ail_test (3.9) (push) Waiting to run

This commit is contained in:
terrtia 2025-01-23 10:26:03 +01:00
parent c2da1f5294
commit 4007bd1633
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -70,7 +70,7 @@ def login():
return render_template("login.html", error=logging_error) return render_template("login.html", error=logging_error)
if request.method == 'POST': if request.method == 'POST':
username = request.form.get('username') username = request.form.get('username', '').lower()
password = request.form.get('password') password = request.form.get('password')
next_page = request.form.get('next_page') next_page = request.form.get('next_page')