-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The new user receives a verify email - but when the [verify] link gets clicked it's response is a verification failed page : Invalid Link #49
Comments
Had this issue. Just looks like url is processing "useremail" but view is looking for "user_email". Worked for me once I made them consistent. |
[FIXED]: Nice catch, That's a bug! but that's in resending email. |
Hi |
I also have this problem. Any suggestions? |
Did you check #53 if the solution is the same? |
I'm also having this issue, I think that I may be having this problem because of my user registration form. class SignUpForm(UserCreationForm): I tried changing the make token function in the token.py file in site-packages to the following:
Still no luck. Views.py: def register_user(request): |
you only need to add inactive_user.is_active=False |
Hello when I signup with a new user - The new user receives a verify email - but when the [verify] link gets clicked it's response is a verification failed page : Invalid Link
This link is invalid or been used already, we cannot verify using this link.
http://127.0.0.1:8000/verification/user/verify-email/Ym9hcmRtZW1iZXJAdGllcnJhc2t5LmNvbQ==/YjN5MWRkLWEyMTJkMjY5YzE3OWI3YTgwOWEwMDI1M2E0YjA5NjUz/
This link seems to be missing the -useremail- in -path(f'user/verify-email/-useremail-/-usertoken-/'-
I'm not sure if my custom Member is the issue in regards to :email = models.EmailField(_('email address'), unique=True)
The text was updated successfully, but these errors were encountered: