dip/templates/index.html

30 lines
699 B
HTML
Raw Normal View History

<html>
2020-01-26 16:38:57 +01:00
<head>
{{ template "head.html" .}}
</head>
<body>
<div id="dip_main_div">
<h1 class="dip_h1">Public IP Address Service</h1>
<table class="uk-table uk-table-striped uk-table-hover">
<caption>IP informations</caption>
<tr>
<td>IP</td>
<td>{{ .IP }}</td>
</tr>
<tr>
<td>Reverse DNS</td>
<td>{{ .Hostname }}</td>
</tr>
<tr>
<td>City</td>
<td>{{ .City }}</td>
</tr>
<tr>
<td>Country</td>
<td>{{ .Country }}</td>
</tr>
<button class="dip_btn" onclick="page_refresh()">Refresh</button>
</div>
</body>
2020-01-20 13:57:11 +01:00
</html>