{% set title = __("Error") %}
{% extends "base.twig" %}

{% block navbar %}
    {% if not ctx.skipLoginCheck %}
        {{ parent() }}
    {% endif %}
{% endblock %}

{% block content %}
    {% include "components/alert_error.twig" with { message: ctx.message } %}
{% endblock %}