2017-09-05 01:28:08 +00:00
|
|
|
<?php /** @var \Slim\Views\PhpRenderer $this */ ?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2017-09-05 01:36:39 +00:00
|
|
|
<meta charset="utf-8">
|
2017-09-05 01:28:08 +00:00
|
|
|
<title>IP address</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1><?php echo htmlspecialchars($this->getAttribute('ip_address')); ?></h1>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
locale: <?php echo htmlspecialchars($this->getAttribute('locale')); ?>
|
|
|
|
|
|
|
|
preferred language: <?php echo htmlspecialchars($this->getAttribute('preferred_language')); ?>
|
|
|
|
</pre>
|
2017-09-05 01:36:39 +00:00
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<a href="https://skobk.in/">skobk.in</a>
|
2017-09-05 01:28:08 +00:00
|
|
|
</body>
|
|
|
|
</html>
|