mirror of https://github.com/dnomd343/echoIP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
5.0 KiB
152 lines
5.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="shortcut icon" href="./assets/img/favicon.png">
|
|
<title>Dnomd343 - IP</title>
|
|
</head>
|
|
|
|
<script src="https://cdn.staticfile.org/jquery/1.11.0/jquery.min.js"></script>
|
|
<!-- <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v2.1.1/mapbox-gl.js'></script> -->
|
|
<!-- <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v2.1.1/mapbox-gl.css' rel='stylesheet' /> -->
|
|
|
|
<script src='assets/mapbox/mapbox-gl.js'></script>
|
|
<link href='assets/mapbox/mapbox-gl.min.css' rel='stylesheet' />
|
|
<link href="assets/css/main.min.css" rel="stylesheet" />
|
|
<script src="assets/js/main.min.js"></script>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#loc {
|
|
text-decoration: none;
|
|
color: #363636;
|
|
transition: all 0.6s;
|
|
}
|
|
|
|
#loc:hover {
|
|
color: #2d87ee;
|
|
}
|
|
|
|
#map {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
z-index: -1090;
|
|
}
|
|
|
|
.mapboxgl-ctrl {
|
|
display: none !important;
|
|
}
|
|
|
|
#sub-title {
|
|
margin-top: 0px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#sub-title,
|
|
a {
|
|
text-decoration: none;
|
|
color: #555;
|
|
transition: all 0.6s;
|
|
}
|
|
|
|
#sub-title,
|
|
a:hover {
|
|
color: #5165db;
|
|
}
|
|
|
|
.positioncontrol {
|
|
position: absolute;
|
|
left: calc(100vw*0.8 - 190px);
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.positioncontrol {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div class="hero is-fullheight is-app-grey mapbox-hero">
|
|
<div id="main-hero" class="hero-body" style="padding: 0;">
|
|
<div class="has-text-centered is-subheader-caption positioncontrol" style="padding-bottom: 0;">
|
|
<div class="contact-page-form flex-card" style="background-color: rgba(255, 255, 255, 0.75); backdrop-filter: blur(1.5px);">
|
|
<h3 id="sub-title">
|
|
<a href="https://github.com/dnomd343/echoIP" target="_blank" title="Source code on Github">echoIP</a>
|
|
</h3>
|
|
<div class="columns is-multiline">
|
|
<div class="column">
|
|
<div class="field">
|
|
<div class="control">
|
|
<input type="text" placeholder="Search here." class="input is-medium" style="background-color: rgba(255, 255, 255, 0.5);">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="column">
|
|
<div class="field">
|
|
<div class="control">
|
|
<button type="button" class="button button-cta primary-btn no-lh is-bold raised is-fullwidth">Search</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<table class="table" style="background-color: transparent;">
|
|
<tr>
|
|
<td>IP</td>
|
|
<td id="ip"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>AS</td>
|
|
<td id="as"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>City</td>
|
|
<td id="city"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Region</td>
|
|
<td id="region"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Country</td>
|
|
<td id="country"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Timezone</td>
|
|
<td id="timezone"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Location</td>
|
|
<td id="loc"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>ISP</td>
|
|
<td id="isp"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Scope</td>
|
|
<td id="scope"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Detail</td>
|
|
<td id="detail"></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div id='map'></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|