[Django]-Django-allauth Uncaught ReferenceError

3👍

I needed to add:

{% include "socialaccount/snippets/login_extra.html" %}

to templates/account/signup.html for the javascript to appear on the page. I expected that to have been included.

3👍

Use the followings may be better:

{% providers_media_js %}

Ref: http://django-allauth.readthedocs.org/en/latest/templates.html

Leave a comment