{% extends 'base.html.twig' %} {% block title %} Error {{ status_code }} {% endblock %} {% block body %}

{% if status_code == 404 %} 404 {% elseif status_code == 401 %} 401 {% else %} {{ status_code }} {% endif %}

{% if status_code == 404 %} Page Not Found {% elseif status_code == 500 %} Internal Server Error {% elseif status_code == 401 %} Session Expired {% else %} Something went wrong {% endif %}

{% if status_code == 404 %} Sorry, the page you are looking for does not exist. {% elseif status_code == 500 %} Sorry, something went wrong on our server. {% elseif status_code == 401 %} 🔒 For your security, your session has expired.
Don’t worry — just log in again to continue enjoying our services. {% else %} Sorry, an unexpected error occurred. {% endif %}

{% if status_code == 401 %} {% else %} ⬅ Go Home {% endif %}
{% endblock %}