diff --git a/pinaxcon/views.py b/pinaxcon/views.py index 734508a20976ef00abe097a48dcbcf3d5f4f868e..34b8d231388da29cc8ef122529ba5345ef1caf52 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) - -