Posts

PENGUMUMAN KELULUSAN

  <!-- Form pencarian kelulusan --> < h2 > Pengecekan Kelulusan Siswa </ h2 > < form id = "cekKelulusan" > NIS: < input type = "text" id = "nis" placeholder = "Masukkan NIS" required > Jurusan: < input type = "text" id = "jurusan" placeholder = "Contoh: XII TKJ 1" required > < button type = "submit" > Cek Status </ button > </ form > <!-- Tempat hasil muncul --> < div id = "hasil" style = "margin-top:20px; font-weight: bold;" > </ div > < script > document . getElementById ( 'cekKelulusan' ). addEventListener ( 'submit' , function ( e ) { e. preventDefault (); const nis = document . getElementById ( 'nis' ). value . trim (); const jurusan = document . getElementById ( 'jurusan' ). value . trim (); // Ganti URL di bawah dengan...

PENGUMUMAN KELULUSAN ONLINE SMK AL-FATTAH KALITIDUN 2025

Pengecekan Kelulusan Siswa NIS: Jurusan: Cek Status  <script> document.getElementById('cekKelulusan').addEventListener('submit', function(e) { e.preventDefault(); const nis = document.getElementById('nis').value.trim(); const jurusan = document.getElementById('jurusan').value.trim(); // Ganti URL di bawah dengan URL Web App Google Apps Script kamu const url = 'https://script.google.com/macros/s/PUT_YOUR_DEPLOYMENT_ID/exec' + '?nis=' + encodeURIComponent(nis) + '&jurusan=' + encodeURIComponent(jurusan); // Panggil Google Apps Script fetch(url) .then(response => response.text()) .then(data => { document.getElementById('hasil').innerText = data; }) .catch(error => { document.getElementById('hasil').innerText = 'Terjadi error. Silahkan coba lagi.'; console.er...