Guest User

Untitled

a guest
Jul 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 KB | None | 0 0
  1. <script type="text/javascript">
  2. // <![CDATA[
  3. $(document).ready(function(){
  4.  
  5. // Set focus to first input
  6. $('#inputUsername').focus();
  7.  
  8. // Custom validator (checks if password == confirm password)
  9. function confirmPassword(args){
  10. if(args.password == args.check)
  11. return {valid:true}
  12. else
  13. return {valid:false, message:'Passwords does not match'}
  14. }
  15.  
  16. // Username is required
  17. $('#inputPassword, #inputUsername').valid8();
  18.  
  19. // Confirm password must match Password
  20. $('#inputConfirmPassword').valid8({
  21. regularExpressions: [
  22. {expression: /^.+$/, errormessage: 'Required'}
  23. ],
  24. jsFunctions:[
  25. { 'function': confirmPassword, 'values': function(){
  26. return {password: $('#inputPassword').val(), check: $('#inputConfirmPassword').val()}
  27. }}
  28. ]
  29. });
  30.  
  31. $('#inputUsername').valid8({
  32. regularExpressions: [
  33. {expression: /^.+$/, errormessage: 'Required'}
  34. ],
  35. ajaxRequests: [
  36. { url: 'class/isUsernameUnique.php', loadingmessage: 'Checking availability...', errormessage:'Username is unavailable'}
  37. ]
  38. });
  39.  
  40. $('#inputPolicy').valid8();
  41.  
  42. $('#inputEmail').valid8({
  43. regularExpressions: [
  44. {expression: /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?.)+(aero|asia|biz|cat|com|coop|edu|gov|info|int|jobs|mil|mobi|museum|name|net|org|pro|tel|travel.ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|.fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|.il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)b$/, errormessage: 'You sure it is valid? The next step in this registration will be sent to the email you enter here.'}
  45. ]
  46. });
  47.  
  48. // Check if all input fields are valid
  49. $('#buttonSignup').click(function(){
  50. alert('Are input fields valid? ' + $('input').isValid());
  51. });
  52.  
  53.  
  54.  
  55.  
  56. });
  57. // ]]>
  58. </script>
  59.  
  60. <?php
  61. include ("db.php");
  62.  
  63. $username = $_POST['value'];
  64.  
  65. if(!isUsernameUnique($username)){
  66. $json["valid"] = false;
  67. $json["message"] = 'username is already in use';
  68. }
  69. else {
  70. $json["valid"] = true;
  71. }
  72.  
  73. function isUsernameUnique($username){
  74. // Database look-up should go here here...
  75. // But for the sake of this demo a random return will do
  76. $result = mysql_query("SELECT username FROM users WHERE username ='$username'")
  77. if ($result > 0);
  78.  
  79. return rand(0, 1);
  80. }
  81.  
  82. print json_encode($json);
  83. ?>
  84.  
  85. function isUsernameUnique($username){
  86. // Database look-up should go here here...
  87. // But for the sake of this demo a random return will do
  88. $result = mysql_query("SELECT username FROM users WHERE username ='$username'");
  89. $num_rows = mysql_num_rows($result);
  90. if ($num_rows > 0) // userName found
  91. // return accordingly
  92.  
  93. }
  94.  
  95. if ($result) // userName found
Add Comment
Please, Sign In to add comment