error-404.php 632 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>Dolibarr 404 error page</title>
  5. </head>
  6. <body>
  7. <div>
  8. <!-- <div data-role="header" data-theme="b">
  9. <h1>Introduction</h1>
  10. <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
  11. </div>
  12. -->
  13. <div>
  14. <h2>Error</h2>
  15. <br>
  16. You requested a website or a page that does not exists.
  17. <br>
  18. <?php print isset($_SERVER["HTTP_REFERER"]) ? 'You come from '.htmlentities($_SERVER["HTTP_REFERER"], ENT_COMPAT, 'UTF-8').'.' : ''; ?>
  19. <hr>
  20. </div>
  21. </div>
  22. </body>
  23. </html>