-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
89 lines (73 loc) · 3.05 KB
/
popup.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
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>IP Geolocator</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<script src="js/constants.js" type="text/javascript"></script>
<script src="js/utils/LocalStorageProvider.js" type="text/javascript"></script>
<script src="js/models/GeoLocation.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/material.min.css">
<script src="js/popup.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/material_fonts.css">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div class="ip-card-square mdl-card mdl-shadow--2dp" style="margin-bottom:100px">
<div class="mdl-card__title mdl-card--expand">
<h2 class="mdl-card__title-text">IP Address & Geolocation</h2>
</div>
<div class="mdl-card__supporting-text">
<div id="ipLocationInfo">
<div id="p2" class="mdl-progress mdl-js-progress mdl-progress__indeterminate"></div>
</div>
</div>
<script type="text/html" id="ipGeoLocationView">
<table class="mdl-data-table mdl-js-data-table" >
<tbody>
<tr>
<td class="mdl-data-table__cell--non-numeric">IP</td>
<td class="mdl-data-table__cell--non-numeric">TqueryT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">City</td>
<td class="mdl-data-table__cell--non-numeric">TcityT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">Country</td>
<td class="mdl-data-table__cell--non-numeric">TcountryT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">Region Name</td>
<td class="mdl-data-table__cell--non-numeric">TregionNameT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">Time Zone</td>
<td class="mdl-data-table__cell--non-numeric">TtimezoneT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">ISP</td>
<td class="mdl-data-table__cell--non-numeric">TispT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">Organization</td>
<td class="mdl-data-table__cell--non-numeric">TorgT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">AS</td>
<td class="mdl-data-table__cell--non-numeric">TasT</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">Location</td>
<td class="mdl-data-table__cell--non-numeric"> <a class="mdl-button mdl-js-button mdl-button--icon" title="Open location in OpenStreetMap"
href="http://www.openstreetmap.org/?mlat=TlatT&mlon=TlonT&zoom=12" target="_blank">
<i class="material-icons">map</i>
</a></td>
</tr>
</tbody>
</table>
</script>
</div>
</body>
</html>