JupyShare/templates/error.html

10 lines
230 B
HTML
Raw Normal View History

2025-06-23 16:52:42 +02:00
{% extends "base.html" %}
{% block content %}
<div class="error">
<i class="fas fa-triangle-exclamation"></i>
<h1>Error {{error_code}}</h1>
<strong>{{error_message}}</strong>
</div>
{% endblock %}