33 lines
729 B
HTML
33 lines
729 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Connexion WhatsApp</title>
|
|
<style>
|
|
body { font-family: sans-serif; text-align: center; margin-top: 50px; }
|
|
img { width: 300px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Scannez ce QR Code</h1>
|
|
<div id="qr-container">Chargement du QR Code...</div>
|
|
|
|
<script>
|
|
async function fetchQR() {
|
|
const res = await fetch('/api/qrcode');
|
|
const data = await res.json();
|
|
|
|
if (data.connected) {
|
|
window.location.href = '/connected';
|
|
} else if (data.qr) {
|
|
document.getElementById('qr-container').innerHTML =
|
|
`<img src="${data.qr}" alt="QR Code WhatsApp">`;
|
|
}
|
|
|
|
setTimeout(fetchQR, 3000);
|
|
}
|
|
|
|
fetchQR();
|
|
</script>
|
|
</body>
|
|
</html>
|