14 lines
No EOL
451 B
HTML
14 lines
No EOL
451 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container text-center py-5">
|
|
<div class="display-1 text-muted mb-5">500</div>
|
|
<h1 class="h2 mb-3">Server Error</h1>
|
|
<p class="h4 text-muted font-weight-normal mb-4">
|
|
Oops, something went wrong on our end
|
|
</p>
|
|
<a href="{{ url_for('dashboard.dashboard_home') }}" class="btn btn-primary">
|
|
<i class="ti ti-arrow-left me-2"></i>Go back to dashboard
|
|
</a>
|
|
</div>
|
|
{% endblock %} |