Move the login template under the authentication namespace.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-07-06 23:11:05 -04:00
parent 00d0184bad
commit ad96863cd9
2 changed files with 1 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ def login_view(request):
Control how the use is to be authenticated, options are 'email' and
'username'
"""
kwargs = {'template_name': 'appearance/login.html'}
kwargs = {'template_name': 'authentication/login.html'}
if setting_login_method.value == 'email':
kwargs['authentication_form'] = EmailAuthenticationForm