add stub login page

This commit is contained in:
Seth Ladygo
2019-03-12 17:36:40 -07:00
parent 043b10c2d2
commit c543d64726
4 changed files with 50 additions and 1 deletions

View File

@ -78,6 +78,9 @@ DATABASES = {
}
}
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
)
# Password validation
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
@ -117,4 +120,6 @@ USE_TZ = True
STATIC_URL = '/static/'
LOGIN_REDIRECT_URL = '/'
from .settings_ansible import *