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

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