Burgernotes/templates/error.html

24 lines
497 B
HTML
Raw Normal View History

2023-08-19 14:17:23 +01:00
<!DOCTYPE html>
<html>
<head>
2024-02-26 17:25:59 +00:00
<title>Burgernotes</title>
2023-08-19 14:17:23 +01:00
<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>
2023-11-03 20:24:40 +00:00
</html>