' . '' . '' . 'Serwer poczty' . '' . '

Otwórz panel poczty

' . ''; } public static function errorPage(string $message, int $status): void { http_response_code($status); header('Content-Type: text/html; charset=UTF-8'); header('Cache-Control: no-store, private'); header('Referrer-Policy: no-referrer'); $safe = htmlspecialchars($message, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8'); echo ''; echo ''; echo 'Serwer poczty'; echo '

Serwer poczty

' . $safe . '

'; echo ''; exit; } }