51 lines
1012 B
Plaintext
51 lines
1012 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Neutral</title>
|
|
<script src="neutron.bundle.js"></script>
|
|
<link rel='stylesheet' href='/stylesheets/style.css'/>
|
|
<style>
|
|
body {
|
|
|
|
padding: 2%;
|
|
|
|
}
|
|
|
|
div {
|
|
|
|
background-color: rgb(32, 32, 32);
|
|
border-radius: 1vw;
|
|
padding: 2%;
|
|
}
|
|
|
|
button {
|
|
color: red;
|
|
background-color: transparent;
|
|
border-radius: 1vw;
|
|
border-color: red;
|
|
border-style: solid;
|
|
padding: 10px;
|
|
transition: all 0.2s ease 0s;
|
|
}
|
|
|
|
button:hover {
|
|
|
|
color: white;
|
|
background-color: red;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Erreur</h1>
|
|
<h2><%= message %> - <%= error.status %></h1>
|
|
<pre><%= error.stack %></pre>
|
|
|
|
</div>
|
|
<br>
|
|
<a href="/"><button>Retourner sur le panel</button></a>
|
|
</body>
|
|
</html>
|
|
|