17 lines
503 B
HTML
17 lines
503 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<link rel="icon" href="{{ url_for('static', filename='artberry.ico') }}" type="image/x-icon">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Error {{ error_code }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>Error {{ error_code }}</h1>
|
|
<p class="error-message">{{ error_message }}</p>
|
|
<p>:(</p>
|
|
</body>
|
|
</html>
|