Advertisement
kevrama

WP sidebar template page

May 13th, 2013
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Sidebar containing the main widget area.
  4. */
  5. ?>
  6.  
  7. <div class="span6">
  8. <h2>Wilt u een offerte aanvragen?</h2>
  9. <p>Vul dan het formulier hieronder in en wij zullen binnen 48 uur contact met u opnemen. </p>
  10.  
  11. <!-- REQUEST QUOTE FORM -->
  12.  
  13. <form action="<?php bloginfo('template_directory'); ?>/contact.php" id="contact-form" class="form-horizontal">
  14. <fieldset>
  15.  
  16. <!-- Form Name -->
  17. <legend></legend>
  18.  
  19. <!-- Text input-->
  20. <div class="control-group">
  21. <label class="control-label" for="name">Uw naam</label>
  22. <div class="controls">
  23. <input id="name" name="name" placeholder="Uw naam" class="input-xlarge" type="text">
  24. <p class="help-block">Hier kunt u uw naam invullen</p>
  25. </div>
  26. </div>
  27.  
  28. <!-- Error input-->
  29.  
  30.  
  31. <!-- Text input-->
  32. <div class="control-group">
  33. <label class="control-label" for="email">Uw e-mailadres</label>
  34. <div class="controls">
  35. <input id="email" name="email" placeholder="Uw e-mailadres" class="input-xlarge" type="text">
  36. <p class="help-block">Hier kunt u uw e-mailadres invullen</p>
  37. </div>
  38. </div>
  39.  
  40. <!-- Text input-->
  41. <div class="control-group">
  42. <label class="control-label" for="tel">Uw telefoonnummer</label>
  43. <div class="controls">
  44. <input id="tel" name="tel" placeholder="Uw telefoonnummer" class="input-xlarge" type="text">
  45. <p class="help-block">Hier kunt u uw telefoonnummer invullen</p>
  46. </div>
  47. </div>
  48.  
  49.  
  50. <!-- Error input-->
  51.  
  52.  
  53. <!-- Select Basic -->
  54. <div class="control-group">
  55. <label class="control-label" for="subject">Kies onderwerp</label>
  56. <div class="controls">
  57. <select id="subject" name="subject" class="input-xlarge">
  58. <option>Alarmopvolging</option>
  59. <option>Collectieve surveillance</option>
  60. <option>Objectbewaking</option>
  61. <option>Ordehandhaving</option>
  62. <option>Veiligheidsplan</option>
  63. </select>
  64. </div>
  65. </div>
  66.  
  67. <!-- Textarea -->
  68. <div class="control-group">
  69. <label class="control-label" for="message">Uw bericht</label>
  70. <div class="controls">
  71. <textarea id="message" name="message"></textarea>
  72. </div>
  73. </div>
  74.  
  75. <!-- Button -->
  76. <div class="control-group">
  77. <label class="control-label">Formulier verzenden</label>
  78. <div class="controls">
  79. <button type="submit" class="btn btn-large btn-primary">Verzenden</button>
  80. </div>
  81. </div>
  82.  
  83. </fieldset>
  84. </form>
  85.  
  86.  
  87. </div>
  88.  
  89.  
  90.  
  91. </div>
  92.  
  93. <hr class="featurette-divider">
  94.  
  95. <!-- /END THE FEATURETTES -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement