Class PasswordResetForm
Declaration
class PasswordResetForm(forms.Form)
source linkMethods
▶ def get_users(self, email) Given an email, return matching user(s) who should receive a reset.
This allows subclasses to more easily customize the default policies
that prevent inactive users and users with unusable passwords from
resetting their password.
▶ def save(self, domain_override=None, ...) Generate a one-use only link for resetting password and send it to the user.
def save(
self,
domain_override=None,
subject_template_name='registration/password_reset_subject.txt',
email_template_name='registration/password_reset_email.html',
use_https=False,
token_generator=default_token_generator,
from_email=None,
request=None,
html_email_template_name=None,
extra_email_context=None,
)
▶ def send_mail(self, subject_template_name, email_template_name, context, from_email, ...) Send a django.core.mail.EmailMultiAlternatives to `to_email`.
def send_mail(
self,
subject_template_name,
email_template_name,
context,
from_email,
to_email,
html_email_template_name=None,
)
Reexports