19 lines
453 B
HTML
19 lines
453 B
HTML
<!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>
|