-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Postalcode</title>
<link rel="shortcut icon" href="./assets/mail.png" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="search-box">
<input type="text" placeholder="Type the Pincode here.... 828103" name="" id="inp-pincode">
<button id="search-btn">Search</button>
</div>
<div class="result" id="result">
<!-- <div class="pincode-map">
<h3>${inpPincode}</h3>
<div class="map-area">
<div class="mapouter">
<div class="gmap_canvas"><iframe class="gmap_iframe" width="100%" frameborder="0" scrolling="no"
marginheight="0" marginwidth="0"
src="https://maps.google.com/maps?width=200&height=200&hl=en&q=${data[0].Latitude},${data[0].Longitude}&t=&z=13&ie=UTF8&iwloc=B&output=embed"></iframe>
</div>
</div>
</div>
</div>
<div class="details">
<p><span>Circle Name:</span> ${data[0].CircleName}</p>
<p><span>District:</span> ${data[0].District}</p>
<p><span>Division Name:</span> ${data[0].DivisionName}</p>
<p><span>Office Name:</span> ${data[0].OfficeName}</p>
<p><span>State Name:</span> ${data[0].StateName}</p>
<p><span>Longitude:</span> ${data[0].Longitude}</p>
<p><span>Latitude:</span> ${data[0].Latitude}</p>
</div> -->
</div>
</div>
</div>
<script src="./script.js" defer></script>
</body>
</html>