[Answered ]-Get A 404 Page when trying to access localhost:8000/accounts/login/ using Django-allauth

2👍

Thanks to @GwynBleidD ,
In my urls.py file the url pattern for allauth should be r’^accounts/’. Instead, the mistake I made is forgetting the trailing slash, being r’^accounts’

👤seki

Leave a comment