13 lines
500 B
HTML
13 lines
500 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}500 - Server Error{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container" style="max-width: 600px; margin-top: 100px; text-align: center;">
|
|
<h1 style="font-size: 72px; color: #dc3545;">500</h1>
|
|
<h2>Internal Server Error</h2>
|
|
<p style="color: #6c757d; margin: 20px 0;">Something went wrong on our end. Please try again later.</p>
|
|
<a href="{{ url_for('main.dashboard') }}" class="btn btn-primary">Go to Dashboard</a>
|
|
</div>
|
|
{% endblock %}
|