Reformat error page
This commit is contained in:
parent
93b586d65b
commit
0f67b0523a
1 changed files with 25 additions and 2 deletions
|
@ -1,2 +1,25 @@
|
||||||
<h1>Error</h1>
|
<!DOCTYPE html>
|
||||||
<p>{{ error }}</p>
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Error!</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
width: 75%;
|
||||||
|
padding-top: 50px;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 80%;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin: 30px 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Something went wrong!</h1>
|
||||||
|
<p>{{ error }}</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Reference in a new issue