'Disable django allauth confirm email during social login
Solution 1:[1]
Solution 2:[2]
Well, in fact even when the mail is sent, and the user clicks the link, django shows the form unless ACCOUNT_CONFIRM_EMAIL_ON_GET is set to True in the settings file:
ACCOUNT_CONFIRM_EMAIL_ON_GET = True
I know this is not 100% an answer on the question but it helps to avoid the form which is annoying indeed.
Solution 3:[3]
In settings.py you must have:
SOCIALACCOUNT_AUTO_SIGNUP = True
Note that the default value is True (django-allauth docs), so if you have it set to False just remove this setting.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Talha Saqib |
| Solution 2 | Davy |
| Solution 3 | Zel |

