Hi,
Can anyone tell me what are different validation scenarios in a secure registration process to log in to an online application
Thanks and Regards
SR
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
sandhya raniPosted Jan 19, 2015, 3:43 AM
Anubhav ChaudharyPosted Jan 17, 2015, 3:15 AM
You can easily find it by yourself, just click on "New User" on any website and after that without filling any value click on submit, all validations will appear to you. But I am telling you these points also:
1: Make main fields important and don't allow user to submit when these fields are empty like First Name, Last Name, DOB/Age etc.
2: Check DOB/Age should not be greater than today's date and should be greater than a particular date.
3: User should not be allowed to enter integers, regex values in "Name" like field.
4: You can put limit on certain values like not more than 50/100 characters.
5: EmailID validation can be applied using regular expression.
I think at initial level these validations would be enough, it might be possible that I had missed some of the points.