error.html.php 819 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="<?= $this->charset; ?>" />
  5. <meta name="robots" content="noindex,nofollow,noarchive" />
  6. <title>An Error Occurred: <?= $statusText; ?></title>
  7. <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>❌</text></svg>" />
  8. <style><?= $this->include('assets/css/error.css'); ?></style>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h1>Oops! An Error Occurred</h1>
  13. <h2>The server returned a "<?= $statusCode; ?> <?= $statusText; ?>".</h2>
  14. <p>
  15. Something is broken. Please let us know what you were doing when this error occurred.
  16. We will fix it as soon as possible. Sorry for any inconvenience caused.
  17. </p>
  18. </div>
  19. </body>
  20. </html>