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

18 lines
405 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="/inbox/{{ address }}/delete/{{ uid }}">
Delete Email</a>
<br>
<a href="/logout">
Logout</a>
2023-11-01 11:48:19 +01:00
<h1>{{message}}</h1>
2024-01-26 02:10:58 +01:00
<h2>{{status}}</h2>
<pre>{{stack}}</pre>
2023-11-01 11:48:19 +01:00
{% endblock %}