diff --git a/efile_app/efile/forms.py b/efile_app/efile/forms.py index 9afe5f5..2567472 100644 --- a/efile_app/efile/forms.py +++ b/efile_app/efile/forms.py @@ -1,5 +1,7 @@ from django import forms -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model + +User = get_user_model() class EFileLoginForm(forms.Form): diff --git a/efile_app/efile/templates/efile/login.html b/efile_app/efile/templates/efile/login.html index 9bf45b7..43a7aeb 100644 --- a/efile_app/efile/templates/efile/login.html +++ b/efile_app/efile/templates/efile/login.html @@ -16,6 +16,7 @@ +
diff --git a/efile_app/efile/templates/efile/register.html b/efile_app/efile/templates/efile/register.html index f0b6354..9e36f5d 100644 --- a/efile_app/efile/templates/efile/register.html +++ b/efile_app/efile/templates/efile/register.html @@ -23,6 +23,7 @@ +
@@ -198,6 +199,7 @@

Register to eFile

+