homedocs/app/templates/errors/500.html
2025-03-30 19:20:13 +02:00

14 lines
No EOL
479 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="container text-center py-5">
<div class="display-1 text-muted mb-3">500</div>
<h1 class="h2 mb-3">Internal Server Error</h1>
<p class="h4 text-muted font-weight-normal mb-4">
Something went wrong on our end. Please try again later.
</p>
<a href="{{ url_for('dashboard.dashboard_home') }}" class="btn btn-primary">
<i class="ti ti-arrow-left me-2"></i> Return to dashboard
</a>
</div>
{% endblock %}