Files
preauth/templates/error.html.twig
T
andrew 102b9f3e78 Full code refactor to Symfony7.4 with FrankenPHP
Includes significant breaking changes.
Default port and transportation changed to
http via port 80
Names of environment variables have changed.
2025-12-15 12:30:14 -05:00

12 lines
272 B
Twig

{% extends 'base.html.twig' %}
{% block content %}
{% if env.teapot|default(true) %}
<h1>{{ env.teapot_title }}</h1>
<p>{{ env.teapot_message }}</p>
{% else %}
<h1>{{ env.too_many_title }}</h1>
<p>{{ env.too_many_message }}</p>
{% endif %}
{% endblock %}