Private Sub CheckLogin()
If Failed == 3
'show recapacha
If Page.IsValid Then
CheckLogin2()
End If
End If
Else
Try
'login code
' on password fail Failed+1
End Try
End If
What I have is a login form but I do not want to show the recapacha till there are 3 invalid login attempts. I’m not sure as to the best way to do that. Above is some mockup code to get an idea on where I am heading.
1 Answer