streams/include/system_unavailable.php

18 lines
311 B
PHP
Raw Normal View History

2021-03-01 23:33:07 +00:00
<?php
require_once("include/network.php");
2022-08-14 10:25:56 +00:00
function system_down(): void
2021-12-03 03:01:39 +00:00
{
http_status(503, 'Service Unavailable');
echo <<< EOT
2022-08-14 10:25:56 +00:00
<html lang="en">
2010-07-01 23:48:07 +00:00
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
2021-03-01 23:33:07 +00:00
EOT;
2021-12-03 03:01:39 +00:00
}