Ticket #10952: 10952.diff

File 10952.diff, 880 bytes (added by Tim Graham, 14 years ago)
  • docs/topics/auth.txt

     
    869869
    870870.. function:: views.password_reset(request[, is_admin_site, template_name, email_template_name, password_reset_form, token_generator, post_reset_redirect])
    871871
    872     Allows a user to reset their password, and sends them the new password
    873     in an e-mail.
     872    Allows a user to reset their password by generating a one-time use link
     873    for doing so and emailing it to the user.
    874874
    875875    **Optional arguments:**
    876876
     
    976976
    977977.. class:: PasswordResetForm
    978978
    979     A form for resetting a user's password and e-mailing the new password to
    980     them.
     979    A form for generating and e-mailing a one-time use link to reset a user's
     980    password.
    981981
    982982.. class:: SetPasswordForm
    983983
Back to Top