class UserCreationForm
A ModelForm
for creating a new user.
It has three fields: username
(from the user model), password1
, and password2
. It verifies that password1
and password2
match, validates the password using validate_password()
, and sets the user’s password using set_password()
.
Please login to continue.