summaryrefslogtreecommitdiff
path: root/django/contrib/auth/forms.py
AgeCommit message (Expand)Author
2023-03-28[4.2.x] Fixed #34438 -- Reallowed extending UserCreationForm.Gary Jarrel
2022-12-29Fixed #25617 -- Added case-insensitive unique username validation in UserCrea...Paul Schilling
2022-11-29Fixed #34187 -- Made UserCreationForm save many-to-many fields.sdolemelipone
2022-11-11Fixed typo in SetPasswordForm()'s docstring.Vasiliy Ivanov
2022-10-27Fixed #34066 -- Fixed link to password reset view in UserChangeForm.password'...Simon Kern
2022-10-26Completed test coverage for contrib.auth.forms.Marcelo Galigniana
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-05-19Fixed #32765 -- Removed "for" HTML attribute from ReadOnlyPasswordHashWidget.David Sanders
2020-12-03Fixed #32235 -- Made ReadOnlyPasswordHashField disabled by default.Timo Ludwig
2020-10-28Made small readability improvements.Martin Thoma
2020-04-28Changed django.forms.ValidationError imports to django.core.exceptions.Valida...François Freitag
2019-12-18Fixed CVE-2019-19844 -- Used verified user email for password reset requests.Simon Charette
2019-11-11Fixed #30977 -- Optimized PasswordResetForm.save() a bit.Hasan Ramezani
2019-09-18Fixed #30776 -- Restored max length validation on AuthenticationForm.Username...Sam Reynolds
2019-09-02Refs #29379 -- Moved autocomplete attribute to UsernameField.Nick Pope
2019-06-28Fixed #30400 -- Improved typography of user facing strings.Jon Dufresne
2019-06-07Fixed #29379 -- Added autocomplete attribute to contrib.auth.forms fields.Hasan Ramezani
2019-03-29Fixed #30236 -- Made UsernameField render with autocapitalize="none" HTML att...pmisteli
2018-10-10Refs #27795 -- Removed force_bytes() usage from django/utils/http.py.Jon Dufresne
2018-10-01Fixed #29809 -- Fixed a crash when a "view only" user POSTs to the admin user...Tim Graham
2018-10-01Fixed CVE-2018-16984 -- Fixed password hash disclosure to admin "view only" u...Carlton Gibson
2018-07-02Fixed #29449 -- Reverted "Fixed #28757 -- Allowed using contrib.auth forms wi...Tim Graham
2018-03-29Fixed #29270 -- Fixed UserChangeForm crash if password field is excluded.Malte Gerth
2018-02-14Removed AuthenticationForm.get_user_id().Tim Graham
2018-02-01Fixed CVE-2018-6188 -- Fixed information leakage in AuthenticationForm.Tim Graham
2018-01-05Fixed #28757 -- Allowed using contrib.auth forms without installing contrib.a...shanghui
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-11-08Fixed #28645 -- Reallowed AuthenticationForm to raise the inactive user error...shanghui
2017-10-23Fixed #28706 -- Moved AuthenticationFormn invalid login ValidationError to a ...Jon Dufresne
2017-10-20Fixed #27515 -- Made AuthenticationForm's username field use the max_length f...Lucas Connors
2017-06-21Fixed #28127 -- Allowed UserCreationForm's password validation to check all u...Andrew Pinkham
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-04-22Fixed #28100 -- Removed link in UserChangeForm.password's translatable help_textClaude Paroz
2017-02-07Refs #27795 -- Removed force_text from the template layerClaude Paroz
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-02-04Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-12-27Fixed #15667 -- Added template-based widget rendering.Preston Timmons
2016-11-25Fixed #25966 -- Made get_user_model() work at import time.Aymeric Augustin
2016-09-27Fixed #20705 -- Allowed using PasswordResetForm with user models with an emai...levental
2016-09-12Fixed #25187 -- Made request available in authentication backends.Aleksej Manaev
2016-09-10Fixed #26097 -- Added password_validators_help_text_html to UserCreationForm.Alexander Gaevsky
2016-08-28Fixed #27136 -- Changed auth forms' autofocus attribute to HTML5 boolean syntax.Jon Dufresne
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-24Fixed #27111 -- Fixed KeyError if USERNAME_FIELD isn't in UserCreationForm.fi...Berker Peksag
2016-08-10Fixed #26951 -- Allowed AuthenticationForm to work with a username of 0.Olexander Yermakov
2016-05-16Refs #21379 -- Normalized unicode username inputsClaude Paroz
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-03-21Fixed #26381 -- Made UserCreationForm reusable with custom user models that d...Berker Peksag