I have configured django-allauth for login through Facebook, Twitter and Google.
However, django-allauth accepts login request only at /accounts/login/, sig
Well, it is pretty easy solution.
in urls.py do this:
from allauth.account.views import LoginView, SignupView
urlpatterns = [
...
url(r'^customurl/login/', LoginView.as_view(), name="custom_login" ),
url(r'^customurl/signup/', SignupView.as_view(), name="custom_singup" ),
...
]
and in html create form: