Im trying to create a login authentication and when the user enters incorrect password for 3 times.
The texboxes of username and password will be disabled and I’m comparing the user input to my stored username and password in my SQL database to validate the username and password of the user, How can i do this?
Im trying to create a login authentication and when the user enters incorrect password
Share
you should use a variable that keeps count of attempts. then, when incorrectGuesses equals 3:
or