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

firstWebsiteSetup.twig « templates « Installation « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5127483c43a7fa1e9f6179297b5231c434fd9e33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends '@Installation/structure.twig' %}

{% block content %}
{% if displayGeneralSetupSuccess is defined %}
    <span id="toFade" class="success">
	    {{ 'Installation_SuperUserSetupSuccess'|translate }}
        <img src="plugins/Zeitgeist/theme/images/success_medium.png"/>
    </span>
{% endif %}

<h2>{{ 'Installation_SetupWebsite'|translate }}</h2>
<p>{{ 'Installation_SiteSetup'|translate }}</p>
{% if errorMessage is defined %}
    <div class="error">
        <img src="plugins/Zeitgeist/theme/images/error_medium.png"/>
        {{ 'Installation_SetupWebsiteError'|translate }}:
        <br/>- {{ errorMessage }}

    </div>
{% endif %}

{% if form_data is defined %}
    {% include "genericForm.twig" %}
{% endif %}
<br/>
<p><i>{{ 'Installation_SiteSetupFootnote'|translate }}</i></p>
{% endblock %}