parent
edfec6a350
commit
50f92d06be
@ -0,0 +1,64 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}Page non trouvée{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Error</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #1a2c4c; /* Big Stone */
|
||||
color: #bda3b6; /* Lily */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
.error-container {
|
||||
text-align: center;
|
||||
border: 1px solid #38476b; /* Rhino */
|
||||
background-color: #5c5d7f; /* Comet */
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.error-container h1 {
|
||||
font-size: 48px;
|
||||
margin: 0;
|
||||
color: #928ba2; /* Manatee */
|
||||
}
|
||||
.error-container p {
|
||||
font-size: 18px;
|
||||
margin: 10px 0 20px;
|
||||
}
|
||||
.error-container a {
|
||||
text-decoration: none;
|
||||
color: #1a2c4c; /* Big Stone */
|
||||
font-weight: bold;
|
||||
border: 1px solid #1a2c4c; /* Big Stone */
|
||||
padding: 10px 20px;
|
||||
border-radius: 5px;
|
||||
background-color: #bda3b6; /* Lily */
|
||||
}
|
||||
.error-container a:hover {
|
||||
background-color: #928ba2; /* Manatee */
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="error-container">
|
||||
<h1>Page Not Found</h1>
|
||||
<h2>Error 404 </h2>
|
||||
<p>We're sorry, but something went wrong. Please try again later.</p>
|
||||
{# <a href="{{ path('homepage') }}">Go to Homepage</a> #}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
{% endblock %}
|
Loading…
Reference in new issue