2025-04-10 14:47:33 +10:00

13 lines
404 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="text-center py-5">
<h1 class="display-1">500</h1>
<h2>Internal Server Error</h2>
<p class="lead">
Sorry, something went wrong on our end. We are looking into it.
</p>
<a href="{{ url_for('core.index') }}" class="btn btn-primary mt-3">Go Back Home</a>
</div>
{% endblock %}