echoip-slatecave/templates/index.html
2023-02-12 17:35:32 +01:00

14 lines
291 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Your IP: {{ data.query.ip }}</title>
</head>
<body>
<h1>Your IP-Address is: {{ data.query.ip }}</h1>
<p>Your requested format was: <b>{{format}}</b></p>
{% if hostname %}
<p>Hostname: <b>{{data.result.hostname}}</b></p>
{% endif %}
</body>
</html>