django-allauth, recommendations for limiting failed login attempts -


i'm using django-axes limit login attempts admin backend. however, frontend client login via django-allauth can't find mechanism detect , prevent failed logins.

what best way prevent multiple failed login attempts allauth? there recommended solution? i'm not keen on blocking attempts particular ip, prevent multiple attempts @ single username ie 'admin'.

thanks in advance,

i'm not sure if best way go this, used axes watch allauth login so:

from axes.decorators import watch_login allauth.account.views import login   url(r'^accounts/login/$', watch_login(login)), url(r'^accounts/', include('allauth.urls')), 

Comments

Popular posts from this blog

python - matpltolib navigation toolbar edit curves and parameters line color automatically changes issue -

node.js - Nodejs javascript implementation of PBEWithMD5AndTripleDES/CBC/PKCS5Padding -