after failing to login 3 times (wrong password, username), i want the browser/window/tab to be closed. how can i do this in javascript or php? and also can you give me some suggestions on what i can do to my system when user fails to login 3 times. thanks.
|
Sorry, this is a bit outside the box, but: Don't do it. There are good reasons why stuff like Few options on how this foot-shooting might occur:
|
||||
|
|
I agree with Ilari Kajaste when he says "Don't do it". The last thing a user wants is undexpected behaviour. I've never come across a website that closes a window after invalid login attempts so it's almost certianly going to confuse your users. Secondly it's going to destroy any history that the user has in their back button which will frustrate some users. |
||||
|
|
|
In JavaScript you can call...
But this will cause a prompt to be displayed by the browser asking the user to confirm they want to close the browser (unless you are closing a child window that you previously spawned). There is no way around these prompts. |
|||
|
|
|
If you are going to block a user account, don't do it after 3 attempts. |
|||
|
|
As SEO tells us, you really never want to force a user away from your site, in SEO that's called lost Return On Investment the opposite of what you do SEO to accomplish. :p Redirecting to another page in your own site is by far preferable. |
|||
|
|

