biter/templates/error.html

16 lines
333 B
HTML
Raw Normal View History

2024-03-13 21:48:13 +03:00
<!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>