-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (71 loc) · 2.92 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-93891365-13"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-93891365-13');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JioMart Delivery Finder</title>
<link rel="shortcut icon" href="files/img/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="files/css/bootstrap.min.css">
<link rel="stylesheet" href="files/css/custom.css">
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand " href="/">JioMart Delivery Finder</a>
</nav>
<div class="container ">
<div class="row" style="margin-top: 20px;text-align: right;">
<div class="col-sm-12 col-md-12 col-lg-12">
<a href="https://twitter.com/TheSumitBanik" class="twitter-follow-button" data-show-count="false"></a>
<script src="files/js/widgets.js"></script>
</div>
</div>
<div class="row landingPage">
<div class="col-sm-12 col-md-12 col-lg-12">
<p>Enter your pincode:</p>
<input name="pincode" title="Enter your Pincode" id="pincode" class="form-control" required='true' maxlength="6"
oninput="javascript:
if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);
document.querySelector('#message').style.visibility='hidden';
document.querySelector('.location-details').style.visibility='hidden'
" type="number"><br>
<button type="submit" title="Find Details" class="btn btn-primary btn-block"
onclick="find(document.querySelector('#pincode'))">Find</button>
<br>
<p id="message"></p>
<div class="location-details table-responsive" style="visibility: hidden;">
<table class="table">
<thead class="thead-light">
<h6 style="font-size: 17px;font-weight:600;">Location Details</h6>
<tr>
<th>City</th>
<th>State Name</th>
<th>State Code</th>
</tr>
</thead>
<tbody>
<tr>
<td id="city_name"> </td>
<td id="state_name"> </td>
<td id="state_code"> </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script src="files/js/jquery.js"></script>
<script src="files/js/popper.min.js"></script>
<script src="files/js/bootstrap.min.js"></script>
<script src="files/js/app.js"></script>
</body>
</html>