dip/templates/index.html
2020-01-26 16:38:57 +01:00

30 lines
699 B
HTML

<html>
<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>
</html>