mirror of https://github.com/CIRCL/lookyloo
10 lines
191 B
HTML
10 lines
191 B
HTML
|
{% extends "main.html" %}
|
||
|
{% block title %}Error{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="container">
|
||
|
<h1>Something went wrong</h1>
|
||
|
<b>{{ error_message }}</b>
|
||
|
</div>
|
||
|
{% endblock %}
|