|
password_reset_confirm(request[, uidb36, token, template_name, token_generator, set_password_form,post_reset_redirect])
Presents a form for entering a new password.
URL name: password_reset_confirm
Optional arguments:
uidb36: The user's id encoded in base 36. Defaults to None.
token: Token to check that the password is valid. Defaults to None.
template_name: The full name of a template to display the confirm password view. Default value is registration/password_reset_confirm.html.
token_generator: Instance of the class to check the password. This will default to default_token_generator, it's an instance of django.contrib.auth.tokens.PasswordResetTokenGenerator.
set_password_form: Form that will be used to set the password. Defaults to SetPasswordForm
post_reset_redirect: URL to redirect after the password reset done. Defaults to None. |
|