mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
13 lines
259 B
HTML
13 lines
259 B
HTML
{% extends "bare_base.html" %}
|
|
|
|
{% block title %}500 Server Error{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="m-4">
|
|
<h1 class="text-4xl mt-4 font-bold">500 Server Error</h1>
|
|
|
|
<div class="pt-2">
|
|
There was an internal server error.
|
|
</div>
|
|
{% endblock %}
|