</script>
<div style="position: absolute; top: 0; left: 0;">
<p>До окончания сессии: <span id="countdown">60</span></p>
<script>
let countdown = 60;
setInterval(function() {
document.getElementById('countdown').innerText = --countdown;
if (countdown == 0) {
window.location.href = 'prinout.php';
}
}, 1000);
</script>
</div>