33 lines
639 B
Plaintext
33 lines
639 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Neutral - Erreur</title>
|
|
<link rel='stylesheet' href='/stylesheets/style.css'/>
|
|
<style>
|
|
body {
|
|
|
|
padding: 2%;
|
|
|
|
}
|
|
|
|
div {
|
|
|
|
background-color: rgb(32, 32, 32);
|
|
border-radius: 1vw;
|
|
padding: 2%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Erreur <%= error.status %></h1>
|
|
<h2><%= message %> - <%= error.status %></h1>
|
|
<pre><%= error.stack %></pre>
|
|
|
|
</div>
|
|
<br>
|
|
<a href="/"><button class="btn red"><span>Retourner sur le panel</span></button></a>
|
|
</body>
|
|
</html>
|
|
|