🎉 Initial Version
This commit is contained in:
39
errorpage_template.html
Normal file
39
errorpage_template.html
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{{title}}</title>
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
body {
|
||||
background-color: #212121;
|
||||
color: #eeeeee;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
font-size: 28px;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-weight: lighter;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
div.border {
|
||||
width: 3px;
|
||||
height: 30px;
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<span>{{code}}</span>
|
||||
<div class="border"></div>
|
||||
<span>{{description}}</span>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user