From 932a85e2797cdc9c8662bd0e07e8359cf62dbb82 Mon Sep 17 00:00:00 2001 From: "georg.sinn-schirwitz" Date: Sat, 30 Aug 2025 16:19:17 +0200 Subject: [PATCH] rename password field --- web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.py b/web/app.py index 0eeb2e5..fd996e2 100644 --- a/web/app.py +++ b/web/app.py @@ -322,7 +322,7 @@ def admin_users(): if request.method == 'POST': data = request.form username = (data.get('username') or '').strip() - password = data.get('password') or None + password = data.get('new_password') or None is_admin = bool(data.get('is_admin')) is_active = bool(data.get('is_active')) if data.get( 'is_active') is not None else True