Guest User

Untitled

a guest
Apr 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <script>
  2. var v = new validate('userRegi', {
  3. username: {is: 'email, required, alpha'},
  4. password: {is: 'alpha, required'},
  5. password2: {is: 'alpha, required', match:'password'},
  6. });
  7.  
  8. v.validate();
  9. </script>
Add Comment
Please, Sign In to add comment