Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.4 KiB

5 years ago
  1. {% if legacy is not defined or legacy %}
  2. {% deprecated 'The template "' ~ _self ~'" is deprecated since Symfony 4.4, will be removed in 5.0.' %}
  3. {% endif %}
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta charset="{{ _charset }}" />
  8. <title>An Error Occurred: {{ status_text }}</title>
  9. <style>
  10. body { background-color: #cbcaca;color: #333333; font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; }
  11. .container { margin: 30px; max-width: 600px; }
  12. h1 { color: #e85000; font-size: 24px; }
  13. h2 { font-size: 18px; }
  14. .center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 5px solid #e85000; text-align:center; padding: 10px;}
  15. </style>
  16. </head>
  17. <body>
  18. <div class="container center">
  19. <p> <img src='https://toolbox.theswitchers.org/images/toolbox.png' style="width:300px"/> </p>
  20. <h1>Oops! An Error Occurred</h1>
  21. <h2>The server returned a "{{ status_code }} {{ status_text }}".</h2>
  22. <p>
  23. Something is broken. Please let us know what you were doing when this error occurred.
  24. We will fix it as soon as possible. Sorry for any inconvenience caused.
  25. </p>
  26. <p> <a href="{{ path('sonata_user_admin_security_login') }}">Return to the homepage</a>.</p>
  27. </div>
  28. </body>
  29. </html>