forked from Ailur/burgernotes-server
23 lines
496 B
HTML
23 lines
496 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>burgernotes</title>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
|
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h2 class="w300">{{ errorMessage }}</h2>
|
||
|
{{ errorCode }} | {{ errorMessage }}
|
||
|
</body>
|
||
|
|
||
|
<style>
|
||
|
body {
|
||
|
margin-left: 15px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
</html>
|