From 8aecd3a133d8216078cd9d7a5f35b077629cd2f6 Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Mon, 30 Mar 2026 15:33:45 +0200 Subject: [PATCH] Fix password-manager username not saved on customer account creation --- src/pretix/presale/forms/customer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/presale/forms/customer.py b/src/pretix/presale/forms/customer.py index ef21ab3c74..8c57fc15ec 100644 --- a/src/pretix/presale/forms/customer.py +++ b/src/pretix/presale/forms/customer.py @@ -296,7 +296,7 @@ class SetPasswordForm(forms.Form): } email = forms.EmailField( label=_('Email'), - disabled=True + widget=forms.EmailInput(attrs={'autocomplete': 'username', 'readonly': 'readonly'}), ) password = forms.CharField( label=_('Password'),