<?php
session_start();
$ok = (isset($_SESSION['ruv_auth']) && $_SESSION['ruv_auth'] === 'ok') ||
      (isset($_COOKIE['ruv_auth'])  && $_COOKIE['ruv_auth']  === 'ok');
if (!$ok) {
    header('Location: login.php');
    exit;
}
readfile(__DIR__ . '/dispo2026.html');
