<CENTER>
<div id="captcha-container">
<h1>Fill Captcha And Download Movie In HD</h1>
<p>
<h2>Enter the characters from the image below:</h2></p>
<span id="captcha-code">ABCD1234</span>
<br>
<input type="text" id="captcha-input" placeholder="Enter CAPTCHA">
<button id="submit-button" onclick="validateCaptcha()">Submit</button>
</div>
<script>
function validateCaptcha() {
const captchaCode = document.getElementById("captcha-code").textContent;
const userInput = document.getElementById("captcha-input").value;
if (userInput === captchaCode) {
// If CAPTCHA matches, open a new website in the same tab
window.location.href = "adsterralink"; // Change to your desired website URL
} else {
alert("CAPTCHA is incorrect. Please try again.");
}
}
</script>
</CENTER>