Guest User

Untitled

a guest
Feb 19th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. <div style="width:50%;">
  2. <input type="hidden" value="<?php echo(microtime(true)); ?>" id="reg_continue" class="req" />
  3. <input type="hidden" value="<?php echo(microtime(true)); ?>" id="reg_affiliate_id" class="" />
  4.  
  5. <label>Username:</label><br />
  6. <input type="text" class="comment-field req" name="reg_uname" id="reg_uname"/> <span class="check-result"></span>
  7. <p class="hint"><strong>Required</strong> - pick a username</p>
  8. <label>Date of birth:</label><br />
  9. <select name="reg_dob_month" id="reg_dob_month" class="comment-field req" style="padding-right:5px;width:75px;">
  10. <option value="">Month</option>
  11. <?php for($i=1;$i<=12;$i++) {
  12. echo('<option value="'.$i.'">'.$i.'</option>');
  13. }
  14. ?>
  15. </select>
  16.  
  17. <select name="reg_dob_day" id="reg_dob_day" class="comment-field req" style="padding-right:5px;width:75px;">
  18. <option value="">Day</option>
  19. <?php for($i=1;$i<=31;$i++) {
  20. echo('<option value="'.$i.'">'.$i.'</option>');
  21. }
  22. ?>
  23. </select>
  24. <select name="reg_dob_year" id="reg_dob_year" class="comment-field req" style="padding-right:5px;width:100px;">
  25. <option value="">Year</option>
  26. <?php
  27. $y=(date("Y",time())-18);
  28.  
  29. for($i=1920;$i<=$y;$i++) {
  30. echo('<option value="'.$i.'">'.$i.'</option>');
  31. }
  32. ?>
  33. </select>
  34.  
  35. <p class="hint"><strong>Required</strong> - you must be aged 18 or over to use the site</p>
  36.  
  37. <label>Your Email Address:</label><br />
  38. <input type="text" class="comment-field req" name="reg_email_address" id="reg_email_address"/> <span class="check-result"></span>
  39. <p class="hint"><strong>Required</strong> - a valid email address</p>
  40. <label>Confirm email address:</label><br />
  41. <input type="text" class="comment-field req" name="reg_confirm_email_address" id="reg_confirm_email_address"/> <span class="check-result"></span>
  42. <p class="hint"><strong>Required</strong> - email confirmation</p>
  43. <label>Forename:</label><br />
  44. <input type="text" class="comment-field req" name="reg_forename" id="reg_forename"/>
  45. <p class="hint"><strong>Required</strong> - Your forname (and middle names should you wish)</p>
  46. <label>Surname:</label><br />
  47. <input type="text" class="comment-field req" name="reg_surname" id="reg_surname"/>
  48. <p class="hint"><strong>Required</strong> - Your surname</p>
  49. <label>Password:</label><br />
  50. <input type="password" class="comment-field req" name="reg_password" id="reg_password"/>
  51. <p class="hint"><strong>Required</strong> - make it strong!</p>
  52. <label>Confirm Password:</label><br />
  53. <input type="password" class="comment-field req" name="reg_confirm_password" id="reg_confirm_password"/>
  54.  
  55. <p class="hint"><strong>Required</strong> - confirm your password!</p>
  56. <label>Tier:</label><br />
  57. <select name="reg_tier" id="reg_tier" class="comment-field req" style="padding-right:5px;width:200px;">
  58. <option value="1">Free (limited functionality)</option>
  59. <option value="2">Bronze</option>
  60. <option value="3">Silver</option>
  61. <option value="4">Gold</option>
  62. </select>
  63. <p class="hint"><strong>Required</strong> - membership level!</p>
  64.  
  65. <div style="float: left;"><label>Security code:</label> <a class="new-captcha" href="#">new code?</a><br><img width="108" height="27" class="captcha" alt="security" src="/captcha"><strong>»</strong><input type="text" style="width: 100px; vertical-align: middle;" id="reg_security_code" name="reg_security_code" class="comment-field req"><p class="hint"><strong>Required</strong> - are you human? (not case sensitive)</p></div>
  66. <div style="float:right;margin-top:2em;">
  67. <input type="submit" value="Subscribe" class="button" style="width:75px;" /> </p>
  68. </div>
  69. <div class="clearfix"></div>
  70. <input type="checkbox" class="req" name="reg_terms" /> I am aged 18 or over and have read & agree to the <a href="" class="link">Terms & Conditions</a> of this site
  71. </div>
Add Comment
Please, Sign In to add comment