Advertisement
ruebenmira

html sample code

Mar 20th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. <div class="container"> <!-- Start of the contact Me Form-->
  2. <div id="contact_form" class="row">
  3. <h3 id="contactText">DROP ME A LINE </h3>
  4. <div class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
  5. <form role="form" id="feedbackForm">
  6. <div class="form-group">
  7. <input type="text" class="form-control" id="name" name="name" placeholder="NAME">
  8. <span class="help-block" style="display: none;">Please enter your name.</span>
  9. </div>
  10.  
  11. <div class="form-group">
  12. <input type="email" class="form-control" id="email" name="email" placeholder="EMAIL ADDRESS">
  13. <span class="help-block" style="display: none;">Please enter a valid e-mail address.</span>
  14. </div>
  15.  
  16. <div class="form-group">
  17. <textarea rows="10" cols="100" class="form-control" id="message" name="message" placeholder="MESSAGE"></textarea>
  18. <span class="help-block" style="display: none;">Please enter a message.</span>
  19. </div>
  20.  
  21. <img id="captcha" src="securimage/securimage_show.php" alt="CAPTCHA Image" />
  22. <a href="#" onclick="document.getElementById('captcha').src = 'securimage/securimage_show.php?' + Math.random(); return false" class="btn btn-info btn-sm">Show a Different Image</a><br/>
  23. <div class="form-group" style="margin-top: 10px;">
  24. <input type="text" class="form-control" name="captcha_code" id="captcha_code" placeholder="For security, please enter the code displayed in the box." />
  25. <span class="help-block" style="display: none;">Please enter the code displayed within the image.</span>
  26. </div>
  27.  
  28. <span class="help-block" style="display: none;">Please enter the security code.</span>
  29. <button type="submit" id="feedbackSubmit" class="btn btn-primary btn-lg" style="display: block; margin-top: 10px;">Send Message</button>
  30. </form>
  31. </div><!--/span-->
  32. </div><!--/row-->
  33. </div><!--/.container-->
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement