10 lines
227 B
HTML
10 lines
227 B
HTML
{% extends 'common/_base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="text-center">
|
|
<h1>Server error</h1>
|
|
<p>Please try again later.</p>
|
|
<a href="/" class="link">← Return to the app</a>
|
|
</div>
|
|
{% endblock %}
|