Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <form class="check">
  2. <input name="nome" type="text" value="nome e cognome" onfocus="check_click(this,'nome e cognome')" onblur="check_blur(this,'nome e cognome')" style="width: 300px;" /><br />
  3. <input name="e-mail" type="text" value="e-mail" onfocus="check_click(this,'e-mail')" onblur="check_blur(this,'e-mail')" style="width: 300px;" /><br />
  4. <input name="telefono" type="text" value="telefono" onfocus="check_click(this,'telefono')" onblur="check_blur(this,'telefono')" style="width: 300px;" /><br />
  5. <div id"x" style="float:left; padding-top: 2px; margin-right: 5px; color: #666;">Arrivo</div><input id="data_da" type="text" value="" style="width: 100px; float:left;" />
  6. <div id"x" style="float:left; padding-top: 2px; margin-right: 5px; margin-left: 4px; color: #666;">Partenza</div><input id="data_a" type="text" value="" style="width: 100px; float:left;" /><br />
  7. <script type="text/javascript">
  8. var d = new Date();
  9. var day = d.getDate();
  10. var month = d.getMonth()+1;
  11. var year = d.getFullYear();
  12. var today = day+"/"+month+"/"+year;
  13. document.getElementById("data_da").value = today;
  14. var d = new Date();
  15. var domani = new Date(d.getTime()+1000*3600*24);
  16. var day = domani.getDate();
  17. var month = domani.getMonth()+1;
  18. var year = domani.getFullYear();
  19. var today = day+"/"+month+"/"+year;
  20. document.getElementById("data_a").value = today;
  21. </script>
  22. <br />
  23. <font color="#666666">Seleziona il numero di camere</font>
  24. <select style="border: 1px solid #CCC; color: #666; margin: 2px 2px 2px 7px; padding: 1px" name="camere" onchange="addPeople(this.value)">
  25. <option value="0">0</option>
  26. <option value="1">1</option>
  27. <option value="2">2</option>
  28. <option value="3">3</option>
  29. </select>
  30. <div id="persone" style="color: #666;"></div><br/>
  31. <textarea name="informazioni aggiuntive" cols="" rows="" onfocus="check_click(this,'informazioni aggiuntive')" onblur="check_blur(this,'informazioni aggiuntive')" style="width: 300px; height: 65px; ">informazioni aggiuntive</textarea><br/>
  32. <input name="INVIA" type="submit" value="INVIA" />
  33. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement