How do I limit the amount of login retries in Django

Posted by RED MONKEY on Stack Overflow See other posts from Stack Overflow or by RED MONKEY
Published on 2010-06-10T02:20:52Z Indexed on 2010/06/10 2:32 UTC
Read the original article Hit count: 269

Filed under:
|

I am trying to get a login form I have in django to only allow three login attempts before redirecting to a "login help" page. I am currently using the builtin "django.contrib.auth.views.login" view with a custom template. How do I force it to redirect to another page after n failed login attempts?

© Stack Overflow or respective owner

Related posts about python

Related posts about django