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...