<!DOCTYPE html>
    <html>
      <head>
        <title>Welcome</title>
        <meta charset='UTF-8'>
      </head>
      <body style='font-family:sans-serif;text-align:center;margin-top:10%'>
        <h1>Welcome! Your access is working correctly.</h1>
        <p id='ip'>Detecting your IP...</p>
        <script>
          fetch('https://api.ipify.org?format=json')
            .then(r => r.json())
            .then(d => document.getElementById('ip').innerHTML = 'Your IP: ' + d.ip)
            .catch(() => document.getElementById('ip').innerHTML = 'Your IP: unavailable');
        </script>
      </body>
    </html>