I have implemented a password recovery functionality in django. With my method, the new password will be sent to the email id entered. It works fine when given the correct e
In case anybody is here and the other two solutions do not make the trick, check that what you are using to filter is what you expect:
user = UniversityDetails.objects.get(email=email)
is email a str, or a None? or an int?
str
None
int