📋 HIZLI KAYIT

Sınav platformumuza hoş geldiniz! Devam etmek için bilgilerinizi girin.

✓ Bilgileriniz KVKK kapsamında güvende

// localStorage'a kaydet localStorage.setItem('pointKullanici', JSON.stringify(kullanici)); // Google Sheets'e gönder (API eklenecek) verileriGonder(kullanici); // Kayıt ekranını kapat, ana sayfayı göster document.getElementById('kayitEkrani').classList.add('kaybol'); document.getElementById('anaSayfa').classList.add('goster'); // 0.5 saniye sonra kayıt ekranını tamamen kaldır setTimeout(() => { document.getElementById('kayitEkrani').style.display = 'none'; }, 500); } // Google Sheets'e veri gönderme (hazır) function verileriGonder(kullanici) { // Buraya Google Apps Script URL'si gelecek fetch('https://script.google.com/macros/s/.../exec', { method: 'POST', mode: 'no-cors', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(kullanici) }).catch(err => console.log('Veri gönderilemedi:', err)); } // Sayfa yüklendiğinde daha önce kayıt olmuş mu kontrol et document.addEventListener('DOMContentLoaded', function() { const oncekiKayit = localStorage.getItem('pointKullanici'); if (oncekiKayit) { // Daha önce kayıt olmuşsa direkt ana sayfaya geç document.getElementById('kayitEkrani').style.display = 'none'; document.getElementById('anaSayfa').classList.add('goster'); } });