<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="refresh" content="5; url=https://data.twigwirelesscontrols.com/">
    <title>Site Moved</title>
    <style>
        body { font-family: system-ui, sans-serif; max-width: 600px; margin: 4em auto; padding: 0 1em; line-height: 1.5; color: #222; }
        h1 { color: #444; }
        .url { font-family: monospace; background: #f4f4f4; padding: 0.2em 0.4em; border-radius: 3px; }
        a.button { display: inline-block; margin-top: 1em; padding: 0.6em 1.2em; background: #2a6df4; color: #fff; text-decoration: none; border-radius: 4px; }
    </style>
</head>
<body>
    <h1>This site has moved</h1>
    <p>OTTR is now hosted at <span class="url">data.twigwirelesscontrols.com</span>. Please update your bookmarks.</p>
    <p>Redirecting automatically in <span id="countdown">5</span> seconds....</p>
    <a class="button" href="https://data.twigwirelesscontrols.com/">Go Already</a>
    <script>
        var n = 5;
        var el = document.getElementById("countdown");
        setInterval(function () {
            n -= 1;
            if (n >= 0) el.textContent = n;
        }, 1000);
    </script>
</body>
</html>