So I recently installed the django-registration app located here: https://django-registration.readthedocs.org/en/latest/index.html . I installed it using pip
and have since been playing around with it. It being the first Python/Django open source software I ever installed raises some noobie questions.
The documentation instructed me to add the following line to my urls, which I did:
url(r'^accounts/', include('registration.backends.default.urls')),
Later I attempted to visit 127.0.0.1:8000/accounts/login/
, my local runserv. It prompted me that TemplateDoesNotExist at /accounts/login/
. Reasonable. My question is though, how do I install a template into the Registration folder. I currently do not have a "Registration" folder in my project, since I never ran any command such as django-admin.py startapp Registration
or anything like that.
I am confused on how to access and change things in this new Registration app if I do not have access to its folder directly?
PS: Would a solution like this differ if I was on an actual server (like rackspace, AWS, etc)