biter/templates/error.html
2024-03-13 21:48:49 +03:00

15 lines
333 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error</title>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<h1>{{ status_code }}</h1>
<p>{{ reason }}</p>
<a href="/">main page</a>
</body>
</html>