13 lines
296 B
HTML
13 lines
296 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>400 Bad Request</title>
|
||
</head>
|
||
<body>
|
||
<h1>400 – Bad Request</h1>
|
||
<p>{{ e.description or "Sorry, we couldn’t understand that request." }}</p>
|
||
<a href="{{ url_for('main.index') }}">Return home</a>
|
||
</body>
|
||
</html>
|