js validation form - it must have 8 to 20 characters , must contain atleast one upper case alphabet code example
Example: password validation with regular expression in javascript
var strongRegex = new RegExp("^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})");