Files
website/html/maintenance.php
2022-04-18 16:46:05 -04:00

22 lines
566 B
PHP
Executable File

<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<title>
Maintenance Page
</title>
<?php
header('Retry-After: 3600', true);
http_response_code(503);
?>
</head>
<style>
body {
background-color: black;
}
</style>
<body>
<h1 style='font-size: 50px; color: red; font-weight: 850;'>The website is currently under maintenance or has crashed please wait!</h1>
<p style="color: white;">Note for system administrator. If the server crashed the error message is in error.log of the website root directory.</p>
</body>