Skip to content

Commit 47ee612

Browse files
Create 500.html
1 parent 104e59a commit 47ee612

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

app/templates/500.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{% extends "base.html" %}
2+
3+
{% block content %}
4+
<div class="container">
5+
<div class="error-page">
6+
<h1>500</h1>
7+
<h2>Internal Server Error</h2>
8+
<p>Something went wrong. Please try again later.</p>
9+
<a href="{{ url_for('index') }}" class="btn-primary">Go Home</a>
10+
</div>
11+
</div>
12+
{% endblock %}

0 commit comments

Comments
 (0)