48hr.email/infrastructure/web/views/error.twig

15 lines
331 B
Plaintext
Raw Normal View History

2023-11-01 11:48:19 +01:00
{% extends 'layout.twig' %}
{% block body %}
2024-01-26 02:10:58 +01:00
<div style="float: right; text-align: end;">
<a href="/inbox/{{ address }}">
← Return to inbox</a>
<br>
<a href="/logout">
Logout</a>
2024-01-26 02:41:50 +01:00
</div>
2023-11-01 11:48:19 +01:00
<h1>{{message}}</h1>
2024-01-26 02:41:50 +01:00
<h2>{{error.status}}</h2>
<pre>{{error.stack}}</pre>
2023-11-01 11:48:19 +01:00
{% endblock %}