aplikasi scaner siswa NAMA GILANG ABDURAHMAN XI-1
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Scanner Absensi Siswa</title>
<script src="https://unpkg.com/html5-qrcode"></script>
<style>
body { font-family: Arial; text-align: center; }
#reader { width: 300px; margin: auto; }
table { margin: auto; border-collapse: collapse; }
th, td { border: 1px solid black; padding: 8px; }
</style>
</head>
<body>
<h2>Aplikasi Scanner Absensi Siswa</h2>
<div id="reader"></div>
<h3>Data Kehadiran</h3>
<table>
<tr>
<th>Nama / NIS</th>
<th>Waktu</th>
</tr>
<tbody id="data"></tbody>
</table>
<script>
function onScanSuccess(qrCodeMessage) {
const waktu = new Date().toLocaleString();
const tabel = document.getElementById("data");
const row = tabel.insertRow();
row.insertCell(0).innerText = qrCodeMessage;
row.insertCell(1).innerText = waktu;
}
new Html5Qrcode("reader").start(
{ facingMode: "environment" },
{ fps: 10, qrbox: 250 },
onScanSuccess
);
</script>
</body>
</html>
Komentar
Posting Komentar