Advertisement
Dekameron

Untitled

Jun 15th, 2014
404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Flight Order</title>
  6. <link rel="stylesheet" href="css/flight_order.css">
  7. </head>
  8. <body>
  9. <form action="" method="POST" id="flight_order_table">
  10. <table id="order_flight_table">
  11. <colgroup>
  12. <col width="66px">
  13. <col width="66px">
  14. <col width="66px">
  15. <col width="100px">
  16. <col width="100px">
  17. </colgroup>
  18. <th colspan="5">
  19. Flight Order
  20. </th>
  21. <tr>
  22. <td colspan="3">From</td>
  23. <td colspan="2">To</td>
  24. </tr>
  25. <tr>
  26. <td colspan="3">
  27. <select name="city" id="city_select">
  28. <option value="default">enter a city</option>
  29. <option value="Londo">London</option>
  30. <option value="Madrid">Madrid</option>
  31. <option value="Paris">Paris</option>
  32. <option value="Moscow">Moscow</option>
  33. <opt5on value="Berlin">Berlin</option>
  34. </select>
  35. </td>
  36. <td colspan="2">
  37. <select name="city" id="city_select">
  38. <option value="default">enter a city</option>
  39. <option value="Londo">London</option>
  40. <option value="Madrid">Madrid</option>
  41. <option value="Paris">Paris</option>
  42. <option value="Moscow">Moscow</option>
  43. <option value="Berlin">Berlin</option>
  44. </select>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td colspan="3"></td>
  49. <td colspan="2">
  50. <input type="checkbox"> Prefer directs
  51. </td>
  52. </tr>
  53. <tr>
  54. <td colspan="3">
  55. Departure Date
  56. </td>
  57. <td colspan="2">
  58. Time Interval
  59. </td>
  60. </tr>
  61. <tr>
  62. <td colspan="3">
  63. <input type="date" value="09.06.2014" class="date_select" id="departure_date" required="required">
  64. </td>
  65. <td>
  66. <input type="time" value="00:20" id="departure_time_interval_begin" required="required">
  67. </td>
  68. <td>
  69. <input type="time" value="05:00" id="departure_time_interval_end" required="required">
  70. </td>
  71. </tr>
  72. <tr>
  73. <td colspan="3">
  74. Return Date
  75. </td>
  76. <td colspan="2">
  77. Time Interval
  78. </td>
  79. </tr>
  80. <tr>
  81. <td colspan="3">
  82. <input type="date" value="13.06.2014" class="date_select" id="return_date" required="required">
  83. </td>
  84. <td>
  85. <input type="time" value="16:00" id="return_time_interval_begin" required="required">
  86. </td>
  87. <td>
  88. <input type="time" value="22:00" id="return_time_interval_end" required="required">
  89. </td>
  90. </tr>
  91. <tr>
  92. <td>12+</td>
  93. <td>2-12</td>
  94. <td>0-2</td>
  95. <td colspan="2">Choose class</td>
  96. </tr>
  97. <tr>
  98. <td>
  99. <input type="number" value="0" min="0" max="100" id="twelve_plus">
  100. </td>
  101. <td>
  102. <input type="text" value="0" id="between_two_and_twelve">
  103. </td>
  104. <td>
  105. <input type="text" value="0" id="below_two">
  106. </td>
  107. <td colspan="2">
  108. <select name="class" id="class_select">
  109. <option value="default">Economy</option>
  110. <option value="FC">First class</option>
  111. <option value="SC">Second class</option>
  112. <option value="TC">Third class</option>
  113. </select>
  114. </td>
  115. <tr>
  116. <td colspan="3"></td>
  117. <td colspan="2">
  118. <input type="submit" value="Search" id="search">
  119. </td>
  120. </tr>
  121. </table>
  122. </form>
  123. </body>
  124. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement