v0.1.0 added 404,403 and 500

This commit is contained in:
Victor
2021-06-08 11:09:28 +02:00
parent 350b22923a
commit e2aa419efa
5 changed files with 164 additions and 6 deletions
+46
View File
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<title>500</title>
<style>
*{
padding: 0;
margin: 0;
}
body{
width: 100%;
}
.error500{
padding: 30px;
font-size: 40px;
color: lightseagreen;
margin-left: auto;
margin-right: auto;
}
.backGo{
margin: 40px;
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}
</style>
<body>
<div class="error500"><p>500 Server error</p></div>
<button onclick="goBack()" class="backGo"> tilbage</button>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>