streams/include/system_unavailable.php
Mike Macgirvin d68a065284 cleanup
2022-08-14 20:25:56 +10:00

17 lines
311 B
PHP

<?php
require_once("include/network.php");
function system_down(): void
{
http_status(503, 'Service Unavailable');
echo <<< EOT
<html lang="en">
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
EOT;
}