We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 469bfa1 commit 3038396Copy full SHA for 3038396
1 file changed
ietf/ietfauth/forms.py
@@ -72,6 +72,10 @@ def send_email(self):
72
}
73
send_mail(self.request, to_email, from_email, subject, 'registration/password_reset_email.txt', context)
74
75
+ def clean_email(self):
76
+ email = self.cleaned_data.get('email', '')
77
+ return email
78
+
79
80
class PasswordForm(forms.Form):
81
0 commit comments