Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Flight Order</title>
- <link rel="stylesheet" href="css/flight_order.css">
- </head>
- <body>
- <form action="" method="POST" id="flight_order_table">
- <table id="order_flight_table">
- <colgroup>
- <col width="66px">
- <col width="66px">
- <col width="66px">
- <col width="100px">
- <col width="100px">
- </colgroup>
- <th colspan="5">
- Flight Order
- </th>
- <tr>
- <td colspan="3">From</td>
- <td colspan="2">To</td>
- </tr>
- <tr>
- <td colspan="3">
- <select name="city" id="city_select">
- <option value="default">enter a city</option>
- <option value="Londo">London</option>
- <option value="Madrid">Madrid</option>
- <option value="Paris">Paris</option>
- <option value="Moscow">Moscow</option>
- <opt5on value="Berlin">Berlin</option>
- </select>
- </td>
- <td colspan="2">
- <select name="city" id="city_select">
- <option value="default">enter a city</option>
- <option value="Londo">London</option>
- <option value="Madrid">Madrid</option>
- <option value="Paris">Paris</option>
- <option value="Moscow">Moscow</option>
- <option value="Berlin">Berlin</option>
- </select>
- </td>
- </tr>
- <tr>
- <td colspan="3"></td>
- <td colspan="2">
- <input type="checkbox"> Prefer directs
- </td>
- </tr>
- <tr>
- <td colspan="3">
- Departure Date
- </td>
- <td colspan="2">
- Time Interval
- </td>
- </tr>
- <tr>
- <td colspan="3">
- <input type="date" value="09.06.2014" class="date_select" id="departure_date" required="required">
- </td>
- <td>
- <input type="time" value="00:20" id="departure_time_interval_begin" required="required">
- </td>
- <td>
- <input type="time" value="05:00" id="departure_time_interval_end" required="required">
- </td>
- </tr>
- <tr>
- <td colspan="3">
- Return Date
- </td>
- <td colspan="2">
- Time Interval
- </td>
- </tr>
- <tr>
- <td colspan="3">
- <input type="date" value="13.06.2014" class="date_select" id="return_date" required="required">
- </td>
- <td>
- <input type="time" value="16:00" id="return_time_interval_begin" required="required">
- </td>
- <td>
- <input type="time" value="22:00" id="return_time_interval_end" required="required">
- </td>
- </tr>
- <tr>
- <td>12+</td>
- <td>2-12</td>
- <td>0-2</td>
- <td colspan="2">Choose class</td>
- </tr>
- <tr>
- <td>
- <input type="number" value="0" min="0" max="100" id="twelve_plus">
- </td>
- <td>
- <input type="text" value="0" id="between_two_and_twelve">
- </td>
- <td>
- <input type="text" value="0" id="below_two">
- </td>
- <td colspan="2">
- <select name="class" id="class_select">
- <option value="default">Economy</option>
- <option value="FC">First class</option>
- <option value="SC">Second class</option>
- <option value="TC">Third class</option>
- </select>
- </td>
- <tr>
- <td colspan="3"></td>
- <td colspan="2">
- <input type="submit" value="Search" id="search">
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement