forgot to pass request.form into LoginForm class
This commit is contained in:
parent
ef146456b1
commit
d66f79031e
@ -138,7 +138,7 @@ def _response_nickname(response):
|
|||||||
@auth_enabled
|
@auth_enabled
|
||||||
def login(request):
|
def login(request):
|
||||||
"""OpenID Login View"""
|
"""OpenID Login View"""
|
||||||
login_form = auth_forms.LoginForm(request)
|
login_form = auth_forms.LoginForm(request.form)
|
||||||
allow_registration = mg_globals.app_config["allow_registration"]
|
allow_registration = mg_globals.app_config["allow_registration"]
|
||||||
|
|
||||||
# Can't store next in request.GET because of redirects to OpenID provider
|
# Can't store next in request.GET because of redirects to OpenID provider
|
||||||
|
Loading…
x
Reference in New Issue
Block a user