20 lines
365 B
Handlebars
20 lines
365 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
body{
|
|
background-color: rgb(100, 100, 100);
|
|
color: #fff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{message}}</h1>
|
|
<h2>{{error.status}}</h2>
|
|
</body>
|
|
</html>
|
|
|