<div class="panel-heading"> <strong>NOEUD D’ACCÈS — ORIGINE NON IDENTIFIÉE</strong> </div>
<div class="panel-body"> <pre id="scan-output">
[BOOT] Initialisation… [WARN] Signature technologique non répertoriée. [SCAN] Analyse de l’utilisateur… [SCAN] Lecture du profil psychométrique… [SCAN] Tentative d’identification… [ERROR] Identité incompatible. [ERROR] Paramètres cognitifs hors protocole. [LOCK] Activation du voile de sécurité.
</pre>
<div id="final-message" style="display:none;">
<div class="alert alert-danger" role="alert">
<strong>⛔ ACCÈS IMPOSSIBLE</strong><br>
Ce système ne reconnaît pas votre existence comme valide.
</div>
<p>Origine du terminal : <span class="label label-inverse">Inconnue</span></p>
<p>Statut : <span class="label label-danger">Voilé</span></p>
<p>Niveau requis : <span class="label label-primary">Non-humain / Non-linéaire</span></p>
<hr>
<div class="alert alert-warning">
<i class="fa fa-exclamation-triangle"></i>
Une présence a été détectée. Le système se replie.
</div>
</div>
</div>
<script>
var lines = document.getElementById("scan-output").innerText.split("\n");
var output = document.getElementById("scan-output");
var finalMsg = document.getElementById("final-message");
output.innerText = "";
var i = 0;
function typeLine() {
if (i < lines.length) {
output.innerText += lines[i] + "\n";
i++;
setTimeout(typeLine, 600);
} else {
finalMsg.style.display = "block";
}
}
typeLine();
</script>