-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (47 loc) · 1.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>travelTip - Eliyahu & Shaiz</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header class="main-header flex">
<div class="container flex space-between">
<h1 class="logo"><a href="index.html">travelTip</a></h1>
<form class="search-form flex">
<input type="text" class="search-input" placeholder="Search Location..." />
<button class="search-btns search-btn">Search</button>
</form>
<button class="search-btns my-location-btn">My Location</button>
</div>
</header>
<section class="location-container flex justify-center align-center">
<div class="curr-location">
Location: <span class="font-bold"> Raanan'a, Israel</span>
</div>
<button class="copy-location-btn">Copy Location</button>
</section>
<div id="map"></div>
<section class="my-locations-container container flex wrap">
</section>
<div class="modal">
<div class="screen"></div>
<div class="details-modal">
<button class="close-modal">X</button>
<h2>Update <span></span></h2>
<form class="update-location-form">
<input type="text" value="" />
<button>Submit</button>
</form>
</div>
</div>
<script src="lib/swal.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC3LyOQ8tGZCuzYZgEcHGaHnap5wlC_lC0"
type="text/javascript">
</script>
<script src="lib/axios.js"></script>
<script type="module" src="js/map.controller.js"></script>
</body>
</html>