Troubleshooting "TemplateDoesNotExist at /accounts/login/" - Django auth setup
Did you define your template path in the settings.py
TEMPLATE_DIRS = (
os.path.join(os.path.dirname(__file__), 'template').replace('\\','/'),
)
If you're using django-registration you must create the registration templates yourself. By default these should be setup to be within a url path of /accounts/.