mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Fix blank page on wrong password and add spaces to previous login failed redirects
This commit is contained in:
parent
d13f8aedcb
commit
890e0a1925
@ -81,13 +81,13 @@ class PublicHandler(BaseHandler):
|
|||||||
|
|
||||||
# if we don't have a user
|
# if we don't have a user
|
||||||
if not user_data:
|
if not user_data:
|
||||||
next_page = "/public/error?error=Login_Failed"
|
next_page = "/public/error?error=Login Failed"
|
||||||
self.redirect(next_page)
|
self.redirect(next_page)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# if they are disabled
|
# if they are disabled
|
||||||
if not user_data.enabled:
|
if not user_data.enabled:
|
||||||
next_page = "/public/error?error=Login_Failed"
|
next_page = "/public/error?error=Login Failed"
|
||||||
self.redirect(next_page)
|
self.redirect(next_page)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@ -117,6 +117,10 @@ class PublicHandler(BaseHandler):
|
|||||||
|
|
||||||
next_page = "/panel/dashboard"
|
next_page = "/panel/dashboard"
|
||||||
self.redirect(next_page)
|
self.redirect(next_page)
|
||||||
|
else:
|
||||||
|
# log this failed login attempt
|
||||||
|
db_helper.add_to_audit_log(user_data.user_id, "Tried to log in", 0, self.get_remote_ip())
|
||||||
|
self.redirect('/public/error?error=Login Failed')
|
||||||
else:
|
else:
|
||||||
self.redirect("/public/login")
|
self.redirect("/public/login")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user