You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def clean_email(self):
data = self.cleaned_data['email'] if User.objects.filter(email=data).exists():
raise forms.ValidationError('Email already in use.')
return data
the name User is not defined anywhere in the class