streams/include/system_unavailable.php
2021-03-01 15:33:07 -08:00

17 lines
No EOL
289 B
PHP

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