Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_formErrors.twig « templates « Login « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2eaf82c2ab28772b84663c96032ecb3dab188dd7 (plain)
1
2
3
4
5
6
7
8
9

{% if formErrors is defined and formErrors is not empty %}
    <div class="message_error">
        {% for data in formErrors %}
            <strong>{{ 'General_Error'|translate }}</strong>: {{ data|raw }}
            <br/>
        {% endfor %}
    </div>
{% endif %}