mirror of
https://codeberg.org/slatian/service.echoip-slatecave.git
synced 2024-12-28 12:38:23 +01:00
14 lines
291 B
HTML
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>
|