Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<body>
<div id="captchaType" data-captcha-type="datadome"></div>
<script>
function load() {
const message = new URLSearchParams(window.location.search).get("message");
window.parent.postMessage(message, "*");
}
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", load);
} else {
load();
}
</script>
</body>
</html>