Advertisement
ryojinma

contact

Apr 4th, 2015
681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. <!--Contact Form -->
  2. <script Language="JavaScript" Type="text/javascript"><!--
  3. function FrontPage_Form1_Validator(theForm)
  4. {
  5. if (theForm.Email.value == "")
  6. {
  7. alert("Please enter a correct in the \"Email\" field.");
  8. theForm.Email.focus();
  9. return (false);
  10. }
  11. if (theForm.Email.value.length < 10)
  12. {
  13. alert("Please enter a correct in the \"Email\" field.");
  14. theForm.Email.focus();
  15. return (false);
  16. }
  17. if (theForm.Email.value.length > 100)
  18. {
  19. alert("Please enter a correct in the \"Email\" field.");
  20. theForm.Email.focus();
  21. return (false);
  22. }
  23. var chkVal = theForm.Email.value;
  24. var prsVal = chkVal;
  25. if (chkVal != "" && !(prsVal >= 10 && prsVal <= 100))
  26. return (true);
  27. }
  28. //--></script>
  29. <form id="Question to customer service" action="mailer.php" method="post" onsubmit="return FrontPage_Form1_Validator(this)" language="JavaScript" name="FrontPage_Form1">
  30. <input type="text" class="col-md-13 col-xs-12 name" name='name' placeholder='Name *'/>
  31. <input type="text" class="col-md-13 col-xs-12 Email" name='Email' placeholder='Email *'/>
  32. <input type="text" class="col-md-12 col-xs-12 Subject" name='Subject' placeholder='Subject'/>
  33. <textarea type="text" class="col-md-12 col-xs-12 Message" name='Message' placeholder='Message *'></textarea>
  34. <div class="cBtn col-xs-12">
  35. <ul>
  36. <input name="Question to customer service" type="submit" name="Send Message" />
  37. <input name="clear" type="Reset" name="clear form" /><br><br>
  38. <div class="g-recaptcha" data-sitekey="KEY FROM GOOGLE"></div>
  39. </ul>
  40. </div>
  41. </form>
  42.  
  43. </div>
  44. <div class="col-md-3 col-xs-12 cont">
  45. <ul>
  46. <li class="dowbload bhide2"><a href="http://www.woodlabstore.com/customer-support.html"><i class="fa fa-arrow-down"></i>Support store</a></li>
  47. <li class="dowbload bhide2"><a href="http://www.woodlabstore.com/terms-of-us.html"><i class="fa fa-arrow-down"></i>Term of Service</a></li>
  48. <li class="dowbload bhide2"><a href="http://www.woodlabstore.com/warranty-info.html"><i class="fa fa-arrow-down"></i>Warranty Info</a></li>
  49. <li><a href="https://twitter.com/woodlabstore"><i class="fa fa-twitter"> </i>Twitter </a></li>
  50. <li><a href="https://www.facebook.com/WoodLabStore"><i class="fa fa-facebook-square"></i>Facebook </a></li>
  51. <li><a href="https://plus.google.com/+WoodlabstoreArtisticAndUniqueFurniture/posts"><i class="fa fa-google-plus-square"></i>Google+ </a></li>
  52. </ul>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement