Advertisement
Guest User

Untitled

a guest
Aug 1st, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Airline Administration</title>
  6. <link rel="stylesheet" href="static/css/style.css">
  7. <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  8. <script src="app.js"></script>
  9. </head>
  10. <body>
  11.  
  12. <div id="container">
  13. <nav>
  14. <div class="left-container">
  15. <ul>
  16. <li><a href="">Home</a></li>
  17. <li><a href="">Flights</a></li>
  18. <li><a href="">Login</a></li>
  19. <li><a href="">Register</a></li>
  20. </ul>
  21. </div>
  22. <div class="right-container">
  23. <span>Welcome, {name} |</span>
  24. <a href="" class="log-out">Logout</a>
  25. </div>
  26. </nav>
  27.  
  28. <section id="viewRegister">
  29. <h2>Create your account:</h2>
  30. <form id="formRegister">
  31. <label>Username:</label>
  32. <input type="text" name="username" placeholder="Username" >
  33. <label>Password:</label>
  34. <input type="password" name="pass" placeholder="Password">
  35. <label>Repeat Password:</label>
  36. <input type="password" name="checkPass" placeholder="Repeat Password">
  37. <input type="submit" class="register" value="Register">
  38. </form>
  39. </section>
  40.  
  41. <section id="viewLogin">
  42. <h2>Login to your account:</h2>
  43. <form id="formLogin">
  44. <label>Username:</label>
  45. <input type="text" name="username" placeholder="Enter your Email" >
  46. <label>Password:</label>
  47. <input type="password" name="pass" placeholder="Enter your Password">
  48. <input type="submit" class="login" value="Login">
  49. </form>
  50. </section>
  51.  
  52.  
  53. <section id="viewCatalog" class="background-img">
  54. <a href="" class="add-flight">Add Flight +</a>
  55.  
  56. <div class="added-flights">
  57. <a href="" class="added-flight">
  58. <img src="http://airportcluj.ro/fisiere/userfiles/Bari_28.03.07_088.jpg" alt="" class="picture-added-flight">
  59. <h3>CLUJ-NAPOCA</h3>
  60. <span>from Sheffield</span><span>20 April</span>
  61. </a>
  62. <a href="" class="added-flight">
  63. <img src="http://www.balkaninsight.com/en/file/show/Images/AirportBucharest.jpg" alt="" class="picture-added-flight">
  64. <h3>BUCHAREST</h3>
  65. <span>from Larnaka</span><span>21 April</span>
  66. </a>
  67. <a href="" class="added-flight">
  68. <img src="https://dynaimage.cdn.cnn.com/cnn/q_auto,w_602,c_fill,g_auto,h_339,ar_16:9/http%3A%2F%2Fcdn.cnn.com%2Fcnnnext%2Fdam%2Fassets%2F170623115234-heathrow---getty.jpg" alt="" class="picture-added-flight">
  69. <h3>TIMISOARA</h3>
  70. <span>from London</span><span>22 April</span>
  71. </a>
  72. </div>
  73. </section>
  74.  
  75. <section id="viewAddFlight">
  76. <h2>Add new flight</h2>
  77. <form id="formAddFlight">
  78. <label>Destination:</label>
  79. <input type="text" name="destination" placeholder="Destination" >
  80. <label>Origin:</label>
  81. <input type="text" name="origin" placeholder="Origin">
  82. <label>Departure Date:</label>
  83. <input type="date" name="departureDate">
  84. <label>Departure Time:</label>
  85. <input type="time" name="departureTime">
  86. <label>Number of Seats:</label>
  87. <input type="number" name="seats" placeholder="0">
  88. <label>Cost per seat:</label>
  89. <input type="number" step="2" name="cost" placeholder="0.00">
  90. <label>Image:</label>
  91. <input type="text" name="img">
  92. <label>Is Public:</label>
  93. <input type="checkbox" name="public">
  94.  
  95. <input type="submit" class="create" value="Create">
  96. </form>
  97. </section>
  98.  
  99. <section id="viewFlightDetails">
  100. <div class="ticket-area">
  101. <div class="ticket-area-left">
  102. <img src="http://airportcluj.ro/fisiere/userfiles/Bari_28.03.07_088.jpg" alt="">
  103. </div>
  104. <div class="ticket-area-right">
  105. <h3>CLUJ-NAPOCA</h3>
  106. <div>from Sheffield</div>
  107. <div class="data-and-time">
  108. 20 April 14:00
  109. <a href="" class="edit-flight-detail"></a>
  110. </div>
  111. <div>
  112. 55 Seats (13.12 per seat)
  113. </div>
  114. </div>
  115. </div>
  116. </section>
  117.  
  118. <section id="viewEditFlight">
  119. <h2>Edit existing flight</h2>
  120. <form id="formEditFlight">
  121. <label>Destination:</label>
  122. <input type="text" name="destination" placeholder="Destination" value="CLUJ-NAPOCA" >
  123. <label>Origin:</label>
  124. <input type="text" name="origin" placeholder="Origin" value="Sheffield">
  125. <label>Departure Date:</label>
  126. <input type="date" id="tt" name="departureDate" value="2018-04-28">
  127. <label>Departure Time:</label>
  128. <input type="time" name="departureTime" value="14:00">
  129. <label>Number of Seats:</label>
  130. <input type="number" name="seats" value="55">
  131. <label>Cost per seat:</label>
  132. <input type="number" step="2" name="cost" value="13.12">
  133. <label>Image:</label>
  134. <input type="text" name="img" value="http://airportcluj.ro/fisiere/userfiles/Bari_28.03.07_088.jpg">
  135. <label>Is Public:</label>
  136. <input type="checkbox" name="public" checked>
  137. <input type="submit" class="save-changes" value="Save Changes">
  138. </form>
  139. </section>
  140.  
  141. <section id="viewMyFlights">
  142. <h3>Your Flights</h3>
  143. <div class="flight-ticket">
  144. <div class="flight-left">
  145. <img src="http://airportcluj.ro/fisiere/userfiles/Bari_28.03.07_088.jpg" alt="">
  146. </div>
  147. <div class="flight-right">
  148. <div>
  149. <h3>CLUJ-NAPOCA</h3><span>15 January</span>
  150. </div>
  151. <div>
  152. from Sheffield <span>14:00</span>
  153. </div>
  154. <p>55 Seats (13.12$ per seat) </p>
  155. <a href="" class="remove">REMOVE</a>
  156. <a href="" class="details">Details</a>
  157. </div>
  158.  
  159. </div>
  160. <div class="flight-ticket">
  161. <div class="flight-left">
  162. <img src="https://dynaimage.cdn.cnn.com/cnn/q_auto,w_602,c_fill,g_auto,h_339,ar_16:9/http%3A%2F%2Fcdn.cnn.com%2Fcnnnext%2Fdam%2Fassets%2F170623115234-heathrow---getty.jpg" alt="">
  163. </div>
  164. <div class="flight-right">
  165. <div>
  166. <h3>LONDON</h3><span>18 January</span>
  167. </div>
  168. <div>from Cluj-Napoca <span>16:00</span>
  169. </div>
  170. <p>36 Seats (15$ per seat) </p>
  171. <a href="" class="remove">REMOVE</a>
  172. <a href="" class="details">Details</a>
  173. </div>
  174. </div>
  175. </section>
  176.  
  177. <footer>@SoftUni Airlines</footer>
  178. </div>
  179.  
  180. <div id="notifications">
  181. <div id="loadingBox" class="notification">
  182. <span>Loading …</span>
  183. </div>
  184. <div id="infoBox" class="notification">
  185. <span>Info</span>
  186. </div>
  187. <div id="errorBox" class="notification">
  188. <span>Error</span>
  189. </div>
  190. </div>
  191. <script>solve()</script>
  192. </body>
  193. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement