|
<!DOCTYPE html> |
|
<html lang="fr"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Votre Titre</title> |
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@11"> |
|
<style> |
|
body { margin: 0; overflow: hidden; } |
|
|
|
#main-iframe { |
|
width: 100%; |
|
height: 100vh; |
|
display: none; |
|
} |
|
|
|
.swal2-container { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
height: 100vh; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> |
|
|
|
<script> |
|
// Affiche la boîte de dialogue SweetAlert2 |
|
Swal.fire({ |
|
title: 'Instructions pour l\'utilisateur', |
|
html: `HEY ! |
|
<ul> |
|
<li>SCIENCE sans conscience n'est que ruine de l'âme.</li> |
|
<li>Photo claire exigée.</li> |
|
<li>Je ne sais pas si c'est fiable. Moi-même je ne suis pas fiable 😂</li> |
|
<li>Conseillé de rogner la photo pour ne garder que le bon exercice et éviter les contaminations.</li> |
|
<li>Numéro : 065362371 (WhatsApp only)</li> |
|
<li>Si tu triches aek je ne suis pas responsable oh ! .</li> |
|
<li>Mort aux impérialistes!</li> |
|
<li>Mort à Israël!</li> |
|
<li>Vive le Bataillon autonome des forces spéciales 🇲🇱</li> |
|
<li>Huurra Assimi Goita 🇲🇱, Ibrahim Traoré 🇧🇫, Abdourahamane Tchiani 🇳🇪</li> |
|
<li>Appuie sur le bouton et patiente un peu. ☺️</li> |
|
</ul>`, |
|
icon: 'info', |
|
confirmButtonText: 'Accepter', |
|
allowOutsideClick: false |
|
}).then((result) => { |
|
if (result.isConfirmed) { |
|
// Si l'utilisateur clique sur "Accepter", affiche l'iframe principal |
|
document.getElementById("main-iframe").style.display = "block"; |
|
} |
|
}); |
|
</script> |
|
|
|
|
|
<iframe |
|
src="https://docfile-mariam-physique1.hf.space" |
|
frameborder="0" |
|
id="main-iframe" |
|
></iframe> |
|
|
|
|
|
</body> |
|
</html> |
|
|