internal-error.tpl 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Oops!</title>
  8. <style>
  9. body {
  10. margin: 30px 40px;
  11. background-color: #f6f6f6;
  12. }
  13. .error-container {
  14. padding: 50px 40px;
  15. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  16. font-size: 14px;
  17. }
  18. h1 {
  19. margin: 0;
  20. font-size: 48px;
  21. font-weight: 400;
  22. }
  23. h2 {
  24. margin: 0;
  25. font-size: 26px;
  26. font-weight: 300;
  27. }
  28. a {
  29. color: #336699;
  30. }
  31. p.back-to-home {
  32. margin-top: 30px;
  33. }
  34. p.debug{
  35. padding: 20px 0px;
  36. font-family: "Courier New", Courier, monospace, serif;
  37. font-size: 14px;
  38. }
  39. .info {
  40. border: solid 1px #999;
  41. padding: 5px;
  42. background-color: #d9edf7;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <div class="error-container">
  48. <h1>Oops!</h1>
  49. <h2>Something went wrong and we couldn't process your request.</h2>
  50. <p>Please go back to the previous page and try again.</p>
  51. <p>If the problem persists, please <a href="mailto:{{email}}">contact us</a>.</p>
  52. <p class="back-to-home"><a href="{{systemurl}}">&laquo; Back to Homepage</a></p>
  53. {{environmentIssues}}
  54. <p class="debug">{{adminHelp}}<br/>{{stacktrace}}</p>
  55. </div>
  56. </body>
  57. </html>