0

I'm new to coding, Python and Django, but trying to handle that :)

Decided to learn while trying to make a real project. Almost every trouble I get is solvable with the help of Google, but now I'm stucked at one point, and cannot find any information about that.

The thing is that I'm using a template from Themeforest called Jango (he-he :)) It can be find here: link. As you can see on that page, it has nice looking 'Sign In' button, and when you click it, sign in form appears.

So my question is how could I integrate that kind of form with allauth app. Is it possible?

Pasha
  • 1

1 Answers1

0

Look at the documentation in this link. If you create a file with account/login.html name in your template, it can override the one shipped with allauth.

For more information look at: https://django-allauth.readthedocs.io/en/latest/overview.html

attin83
  • 115
  • 3
  • 8
  • The thing is that I don't need a separate login page. If you follow the link to template demo, you can see that login form is just a popup window, and not a separate page. So I'm confused about how I can integrate that. – Pasha Mar 13 '17 at 13:23