upstream/2025.6.0 #6

Merged
simon merged 98 commits from upstream/2025.6.0 into master 2025-07-04 20:25:01 +00:00
Showing only changes of commit ab72abea0a - Show all commits
+2 -1
View File
@@ -55,7 +55,7 @@ class AuthenticationForm(forms.Form):
required_css_class = 'required'
email = forms.EmailField(
label=_("Email"),
widget=forms.EmailInput()
widget=forms.EmailInput(attrs={'autocomplete': 'email'})
)
password = forms.CharField(
label=_("Password"),
@@ -140,6 +140,7 @@ class RegistrationForm(forms.Form):
name_parts = forms.CharField()
email = forms.EmailField(
label=_("Email"),
widget=forms.EmailInput(attrs={'autocomplete': 'email'})
)
error_messages = {