neutral-old/views/error.ejs

51 lines
1012 B
Plaintext
Raw Normal View History

2023-02-21 11:02:37 +00:00
<!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;
2023-02-23 13:47:21 +00:00
cursor: pointer;
2023-02-21 11:02:37 +00:00
}
</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>