error.html.php 633 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?= $this->charset; ?>" />
  5. <meta name="robots" content="noindex,nofollow,noarchive" />
  6. <title>An Error Occurred: <?= $statusText; ?></title>
  7. <style><?= $this->include('assets/css/error.css'); ?></style>
  8. </head>
  9. <body>
  10. <div class="container">
  11. <h1>Oops! An Error Occurred</h1>
  12. <h2>The server returned a "<?= $statusCode; ?> <?= $statusText; ?>".</h2>
  13. <p>
  14. Something is broken. Please let us know what you were doing when this error occurred.
  15. We will fix it as soon as possible. Sorry for any inconvenience caused.
  16. </p>
  17. </div>
  18. </body>
  19. </html>