CINXE.COM
<html><head> <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script> <script src="https://smartcaptcha.yandexcloud.net/captcha.js" defer></script> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <script> let intvl = setInterval(function(){ let token; if($("input[name='smart-token']")[0]) token = $("input[name='smart-token']")[0].value; if(token !== "" && typeof token !== "undefined"){ fetch("/yacaptcha_check.php", { method: "POST", body: token }).then(response => { clearInterval(intvl); if(response.status === 200){ let url = "/imap_moscow.shtml?lat=4.20061&lng=100.575803&zoom=15"; if(location.hash.length > 1) location.reload(); else location.href = url; } }).catch(() => { clearInterval(intvl); }); } }, 500); </script> <style> body { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; } .fi-captcha-container { max-width: 300px; } </style> </head><body> <div class="fi-captcha-container"> <div style="height: 100px" id="captcha-container" class="smart-captcha" data-sitekey="ysc1_4cu6w27a3yVnk9JbifUV8AA5RWGdno6T4uv4yjsY60d9e81b" ></div> </div> </body></html>