Guest User

Untitled

a guest
Oct 10th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.42 KB | None | 0 0
  1. [calendar]
  2.     <div style="text-align:left;line-height:28px;">
  3.     <p>Übernachtungspreis: [original_cost_hint]</p>
  4.     <p>Endreinigung: [additional_cost_hint]</p>
  5.     <p>Gesamtpreis: [cost_hint]</p>
  6.     </div>
  7. <div style="float:left;margin:10px 5px;">Vorname*<br />[text* name]</div>
  8. <div style="float:left;margin:10px 5px;">Nachname*<br />[text* secondname]</div>
  9. <div style="float:left;margin:10px 5px;">Adresse*<br />  [text* address]</div>
  10. <div style="float:left;margin:10px 5px;">PLZ*<br />  [text* postcode]</div>
  11. <div style="float:left;margin:10px 5px;">Ort*<br />  [text* city]</div>
  12. <div style="float:left;margin:10px 5px;">Email*<br />[email* email]</div>
  13. <div style="float:left;margin:10px 5px;">Telefon<br />[text phone]</div>
  14. <div style="float:left;margin:10px 5px;">Personenanzahl: <br /> [select visitors class:visitors_selection "1" "2" "3" "4"]</div>
  15. <br />
  16.  
  17.  
  18.      <div class="visitors_selection_div v_num2 v_num3 v_num4" style="display:none;float:left;margin:10px 0px;">
  19.        <div style="float:right;margin:10px 5px;">Name Mitreisender 2*<br />[text name2]</div>
  20.        <div style="float:right;margin:10px 5px;">Geburtsdatum<br />[text Geburtsdatum2]</div>
  21.     </div>
  22.  
  23.    
  24.     <div class="visitors_selection_div v_num3 v_num4" style="display:none;">
  25.        <div style="float:right;margin:10px 5px;">Geburtsdatum<br />  [text Geburtsdatum3]</div>
  26.        <div style="float:right;margin:10px 5px;">Name Mitreisender 3*<br />  [text name3]</div>
  27.     </div>
  28.    
  29.     <div class="visitors_selection_div v_num4" style="display:none;">
  30.        <div style="float:right;margin:10px 5px;">Geburtsdatum<br />  [text Geburtsdatum4]</div>
  31.        <div style="float:right;margin:10px 5px;">Name Mitreisender 4*<br />  [text name4]</div>
  32.     </div>
  33.    
  34.     <script type="text/javascript">
  35.        jQuery('.visitors_selection').on('change', function() {
  36.            var visitors_num = jQuery(this).find(":selected").val();
  37.            jQuery('.visitors_selection_div').hide();
  38.            jQuery('.visitors_selection_div.v_num' + visitors_num ).show();
  39.        });
  40.     </script>
  41. <div style="float:left;margin:10px 5px;">
  42. [checkbox Endreinigung default:on "Endreinigung +35€"]<br/>
  43. <p class="terms_and_condition">[checkbox* term_and_condition use_label_element "Ich akzeptiere die "] <a href="http://www.fewo-dangasteroase.de/agb" target="_blank" rel="nofollow">Allgemeinen Geschäftsbedingungen</a></p>
  44. <br/> <br/> [submit class:btn "Senden"]</div>
Advertisement
Add Comment
Please, Sign In to add comment