KyrosAura Logo
E2E ENCRYPTED

ৰাইজৰ দল ২০২৬

শিৱসাগৰৰ
নৱনিৰ্মাণ

ৰাজনীতি নহয়, এতিয়া কেৱল উন্নয়নৰ কথা। 'জনসংযোগ'ৰ জৰিয়তে আপোনাৰ অঞ্চলৰ সমস্যাসমূহ আমাক পোনপটীয়াকৈ জনাওক আৰু এখন নতুন শিৱসাগৰ গঢ়াত অংশীদাৰ হওক।

+91

Secure data collection for 2026. See our Privacy Policy.

Akhil Gogoi

Authenticated Persona

"তথ্য, আন্তঃগাঁথনি আৰু শান্তিৰ আধাৰত আমি উজনি অসমৰ ভৱিষ্যত গঢ়িম।"

🔒 Jan-Sanjog Secured Command Network
function showLogin() { document.getElementById('admin-modal').classList.remove('hidden'); document.getElementById('admin-pin').focus(); } function closeLogin() { document.getElementById('admin-modal').classList.add('hidden'); document.getElementById('login-error').classList.add('hidden'); document.getElementById('admin-pin').value = ''; } function authenticate() { const pin = document.getElementById('admin-pin').value; if (pin === '2026') { closeLogin(); document.getElementById('public-view').classList.add('hidden'); document.getElementById('secret-toggle').classList.add('hidden'); document.getElementById('private-view').classList.remove('hidden'); // Fetch the real live number from Google Sheets fetchLiveCount(); } else { document.getElementById('login-error').classList.remove('hidden'); } } async function fetchLiveCount() { const loyalistsEl = document.getElementById('total-loyalists'); const scriptURL = 'https://script.google.com/macros/s/AKfycbwdCd7r0xKNQs7AtPTYLKjW6W3ty6mjV-zzyaK697gT_lKO1-_VTo_ed8lPRIcF9kKOtQ/exec'; try { const response = await fetch(scriptURL); const data = await response.json(); if (data.status === "success") { const basePulse = 1187; const realCount = data.count; const grandTotal = basePulse + realCount; loyalistsEl.innerText = grandTotal.toLocaleString(); } } catch (error) { console.error("Live count failed, holding base number."); } } async function submitVoterData() { // 0. RESET ERRORS document.getElementById('error-name').classList.add('hidden'); document.getElementById('error-age').classList.add('hidden'); document.getElementById('error-ward').classList.add('hidden'); document.getElementById('error-issue').classList.add('hidden'); document.getElementById('error-phone').classList.add('hidden'); // 1. COLLECT VALUES const nameVal = document.getElementById('user-name').value.trim(); const ageVal = document.getElementById('age-group').value; const wardVal = document.getElementById('ward-number').value; const issueVal = document.getElementById('top-issue').value; const rawNumber = document.getElementById('wa-number').value.trim(); // 2. RUN VALIDATION let hasError = false; if (nameVal === "") { document.getElementById('error-name').classList.remove('hidden'); hasError = true; } if (ageVal === "") { document.getElementById('error-age').classList.remove('hidden'); hasError = true; } if (wardVal === "") { document.getElementById('error-ward').classList.remove('hidden'); hasError = true; } if (issueVal === "") { document.getElementById('error-issue').classList.remove('hidden'); hasError = true; } if (rawNumber.length !== 10) { document.getElementById('error-phone').classList.remove('hidden'); hasError = true; } // IF ANY FIELD IS MISSING, STOP HERE. if (hasError) return; // 3. THE HONEYPOT TRAP if (document.getElementById('system-trap').value !== "") { console.warn("Automated bot traffic intercepted and dumped."); document.getElementById('form-state').classList.add('hidden'); document.getElementById('success-state').classList.remove('hidden'); return; } // 4. PREPARE PAYLOAD const voterData = { name: nameVal, age: ageVal, ward: wardVal, issue: issueVal, whatsapp: rawNumber, authKey: "KYROS_SIVASAGAR_2026" }; // 5. INITIATE SECURE TRANSFER UI document.getElementById('form-state').classList.add('hidden'); const processing = document.getElementById('processing-state'); processing.classList.remove('hidden'); const terminalText = document.getElementById('terminal-text'); setTimeout(() => { terminalText.innerText = "Tunneling to target device..."; }, 1000); setTimeout(() => { terminalText.innerText = "Confirming E2E Payload delivery..."; terminalText.classList.replace('text-emerald-400', 'text-emerald-100'); }, 2000); try { const response = await fetch('https://script.google.com/macros/s/AKfycbwdCd7r0xKNQs7AtPTYLKjW6W3ty6mjV-zzyaK697gT_lKO1-_VTo_ed8lPRIcF9kKOtQ/exec', { method: 'POST', body: JSON.stringify(voterData) }); if (response.ok) { setTimeout(() => { processing.classList.add('hidden'); document.getElementById('success-state').classList.remove('hidden'); document.getElementById('success-number').innerText = "Established. Redirecting..."; triggerNotification(); const loyalists = document.getElementById('total-loyalists'); if(loyalists) { loyalists.innerText = (parseInt(loyalists.innerText.replace(',', '')) + 1).toLocaleString(); loyalists.classList.replace('text-white', 'text-emerald-400'); } const feed = document.getElementById('live-intercept-feed'); const now = new Date(); const time = now.getHours().toString().padStart(2, '0') + ":" + now.getMinutes().toString().padStart(2, '0'); const newEntry = document.createElement('li'); newEntry.className = "flex justify-between text-emerald-400 font-bold animate-pulse"; newEntry.innerHTML = `[${time}] LIVE UPLINK ${voterData.whatsapp}`; if(feed) feed.insertBefore(newEntry, feed.firstChild); setTimeout(() => { window.location.href = "https://chat.whatsapp.com/JCVr787t3ptHLRpuvwHiVU?mode=gi_t"; }, 3000); }, 2800); } } catch (error) { alert("Security Handshake Timeout. Please check your connection."); location.reload(); } } function triggerNotification() { const toast = document.getElementById('wa-toast'); toast.classList.remove('hidden'); toast.classList.add('notification-anim'); setTimeout(() => { toast.classList.add('hidden'); toast.classList.remove('notification-anim'); }, 6000); } document.getElementById("admin-pin").addEventListener("keypress", (e) => { if(e.key === "Enter") authenticate(); });