From 1743a6e9ae7967267af16ca4f7b5b809b5f578c4 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Fri, 18 Aug 2017 08:55:32 -0700 Subject: [PATCH] (Actually Works) --- pinaxcon/views.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pinaxcon/views.py b/pinaxcon/views.py index 734508a..34b8d23 100644 --- a/pinaxcon/views.py +++ b/pinaxcon/views.py @@ -16,12 +16,10 @@ def server_error(request, template_name=defaults.ERROR_500_TEMPLATE_NAME): def account_login(request): d = { - "login_form": LoginEmailForm(), + "login_form": LoginUsernameForm(), "signup_form": SignupForm(), "signup_open": getattr(settings, "ACCOUNT_OPEN_SIGNUP", True), } print d["signup_open"], settings.ACCOUNT_OPEN_SIGNUP return render(request, "account_login.html", d) - -