1
0
mirror of https://github.com/django/django.git synced 2025-03-13 02:40:47 +00:00

[5.1.x] Sorted alphabetically forms list in docs/topics/auth/default.txt.

Backport of 7adb6dd98d50a238f3eca8c15b16b5aec12575fd from main.
This commit is contained in:
nessita 2024-08-22 09:14:11 -03:00 committed by Natalia
parent da22e6cb3c
commit 7acec02554

View File

@ -1728,6 +1728,18 @@ provides several built-in forms located in :mod:`django.contrib.auth.forms`:
code="no_b_users", 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 .. class:: PasswordChangeForm
A form for allowing a user to change their password. A form for allowing a user to change their password.
@ -1767,18 +1779,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 A form used in the admin interface to change a user's information and
permissions. 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 .. class:: UserCreationForm
Inherits from :class:`BaseUserCreationForm`. To help prevent confusion with Inherits from :class:`BaseUserCreationForm`. To help prevent confusion with