From 44fa4d4880a5672fa27ca1012fb80291829f2fdc Mon Sep 17 00:00:00 2001 From: moanos Date: Sun, 2 Nov 2025 08:14:41 +0100 Subject: [PATCH] feat: Remove requirement to retype password --- src/notfellchen/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notfellchen/settings.py b/src/notfellchen/settings.py index ac55928..634ddfc 100644 --- a/src/notfellchen/settings.py +++ b/src/notfellchen/settings.py @@ -141,7 +141,7 @@ AUTHENTICATION_BACKENDS = [ ACCOUNT_EMAIL_VERIFICATION = "mandatory" ACCOUNT_EMAIL_VERIFICATION_BY_CODE_ENABLED = True -ACCOUNT_SIGNUP_FIELDS = ['username*', "email*", "password1*", "password2*"] +ACCOUNT_SIGNUP_FIELDS = ['username*', "email*", "password1*"] ACCOUNT_SIGNUP_FORM_CLASS = 'fellchensammlung.forms.AddedRegistrationForm'