<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>Bot Verification</title>
    <script>
        function onSubmit() {
            document.getElementById('lsrecaptcha-form').submit();
        }

        document.addEventListener("DOMContentLoaded", function () {
            const form = document.getElementById("lsrecaptcha-form");
            const widget = document.getElementById("altcha");
            if (widget) {
                widget.addEventListener("verified", function (event) {
                    console.log("Altcha verified:", event.detail);
                    form.submit();
                });
            }
        });

    </script>
    <style>
		* {
			box-sizing: border-box;
			margin: 0;
			padding: 0;
		}

		html {
			font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
		}

		html, body {
			height: 100%;
		}

		body {
			color: #222;
			background: #fff;
			height: 100%;
			line-height: 1.5;
		}

		.panel-wrapper {
			width: 100%;
			height: 100%;

			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: safe center;
		}

		.panel {
			padding: 3rem;
			max-width: 100%;
			min-height:250px;
		}

		.title, .subtitle, .instructions {
			text-align: center;
		}

		.title {
			font-size: 2rem;
			font-weight: 700;
			line-height: 1.1;
			word-wrap: break-word;
			margin-bottom: 1rem;
		}

		.instructions {
			font-size: 0.875rem;
		}

		#lsrecaptcha-form {
			margin-top: 3rem;
			margin-bottom: 3rem;
		}

		.recaptcha-center {
			margin-top: 35px;
			margin-bottom: 20px;
			margin-left: 13%;
			margin-right: 13%;
			display: block;
		}

		.altcha {
			margin: 0 auto;
		}

		@media (max-width:550px) {

			.panel {
				padding: 1.5rem 1rem;
			}

			.title {
				font-size: 1.6rem;
			}
			
			.subtitle {
				font-size: 0.938rem;
			}
		}

		@media (max-width:380px) {
			.title {
				font-size: 1.4rem;
			}
		}

		@media (prefers-color-scheme: dark) {
			body {
				background: #161616;
				color: #c2c2c2;
			}

			.title {
				color: #d9d9d9;
			}
		}
    </style>
</head>
<body>
	<div class="panel-wrapper">
		<div class="panel">
			<h2 class="title">hotgossips.in</h2>
			<p class="subtitle">QUIC.cloud Bot Protection: Verifying that you are not a robot...</p>
			<p class="instructions">To continue, please complete the security check below to verify you are human.</p>
			<form id="lsrecaptcha-form" method="POST" action="/.qcrecap/recaptcha?">
	
				<altcha-widget id="altcha" challengeurl="/.qcrecap/recaptcha" name="payload" theme="light"></altcha-widget>
	
			</form>
		</div>
	</div>

    <script type="module" src="https://cdn.jsdelivr.net/npm/altcha/dist/altcha.js" async defer>

    </script>
</body>

</html>