15 lines
512 B
HTML
15 lines
512 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8 text-center">
|
|
<div class="alert-danger mt-5">
|
|
<h1 class="display-1">500</h1>
|
|
<h2>Internal Server Error</h2>
|
|
<p class="lead">An unexpected error occurred while processing your request.</p>
|
|
<p>Check the URL or return to the <a href="{% url 'index' %}" class="alert-link">homepage</a>.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|