diff options
| author | nessita <124304+nessita@users.noreply.github.com> | 2024-08-22 09:14:11 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-22 09:14:11 -0300 |
| commit | 7adb6dd98d50a238f3eca8c15b16b5aec12575fd (patch) | |
| tree | e562b3800c4d92a263ec9ec4cbb3a39e8ee0fe6d /docs | |
| parent | 519087819ed6e8bfbe6be208df71a7df19f23a58 (diff) | |
Sorted alphabetically forms list in docs/topics/auth/default.txt.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/default.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index a81de8f2cc..3ea21fac91 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -1708,6 +1708,18 @@ provides several built-in forms located in :mod:`django.contrib.auth.forms`: code="no_b_users", ) +.. class:: BaseUserCreationForm + + A :class:`~django.forms.ModelForm` for creating a new user. This is the + recommended base class if you need to customize the user creation form. + + It has three fields: ``username`` (from the user model), ``password1``, + and ``password2``. It verifies that ``password1`` and ``password2`` match, + validates the password using + :func:`~django.contrib.auth.password_validation.validate_password`, and + sets the user's password using + :meth:`~django.contrib.auth.models.User.set_password()`. + .. class:: PasswordChangeForm A form for allowing a user to change their password. @@ -1747,18 +1759,6 @@ provides several built-in forms located in :mod:`django.contrib.auth.forms`: A form used in the admin interface to change a user's information and permissions. -.. class:: BaseUserCreationForm - - A :class:`~django.forms.ModelForm` for creating a new user. This is the - recommended base class if you need to customize the user creation form. - - It has three fields: ``username`` (from the user model), ``password1``, - and ``password2``. It verifies that ``password1`` and ``password2`` match, - validates the password using - :func:`~django.contrib.auth.password_validation.validate_password`, and - sets the user's password using - :meth:`~django.contrib.auth.models.User.set_password()`. - .. class:: UserCreationForm Inherits from :class:`BaseUserCreationForm`. To help prevent confusion with |
