source: backend/GlobeGuru-backend/frontend/index.html@ d4d8f61

Last change on this file since d4d8f61 was d4d8f61, checked in by Kikac324 <kristijanzafirovski26@…>, 7 months ago

init

  • Property mode set to 100644
File size: 758 bytes
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Title</title>
6 <link rel="stylesheet" href="css.css">
7</head>
8<body>
9<div class="searchBar">
10 <form id="form-id">
11 <label for="destination">Destination</label>
12 <input type="text" id="destination" name="destination">
13 <label for="departureDate">Departure Date</label>
14 <input type="date" id="departureDate" name="departureDate">
15 <label for="numberOfPeople">Number of People</label>
16 <input type="number" id="numberOfPeople" name="numberOfPeople">
17 <input type="submit">
18 </form>
19
20</div>
21<div id="givenOptions">
22 <!-- populated with JS response -->
23
24</div>
25
26<script src="js/formHandler.js"> </script>
27</body>
28</html>
Note: See TracBrowser for help on using the repository browser.