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

resetPassword.twig « templates « Login « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd9cf4acccc52e147ad85692df4094fb8125bb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% if infoMessage is defined and infoMessage is not empty %}
    <p class="message">{{ infoMessage }}</p>
{% endif %}
{% if formErrors is defined %}
    <p class="message_error">
        {% for data in formErrors %}
            <strong>{{ 'General_Error'|translate }}</strong>
            : {{ data }}
            <br/>
        {% endfor %}
    </p>
{% endif %}