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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-04-29 05:27:27 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-05-20 14:25:37 +0300
commit7142c6d176e5f718dec8ccdc665443b6e96d8ab2 (patch)
tree151d0909e96f9430a7d92f2b91d858ab55d1e938 /plugins/Installation/templates/finished.twig
parent9588f243999d951e2f0718e286469d4f2e3b68cb (diff)
ref #7584 Redesign of the installation
Diffstat (limited to 'plugins/Installation/templates/finished.twig')
-rw-r--r--plugins/Installation/templates/finished.twig56
1 files changed, 28 insertions, 28 deletions
diff --git a/plugins/Installation/templates/finished.twig b/plugins/Installation/templates/finished.twig
index 6e428916fb..9e1f557103 100644
--- a/plugins/Installation/templates/finished.twig
+++ b/plugins/Installation/templates/finished.twig
@@ -2,33 +2,33 @@
{% block content %}
-<h2>{{ 'Installation_Congratulations'|translate|raw }}</h2>
-{{ 'Installation_CongratulationsHelp'|translate|raw }}
-<br/>
-
-<h2>{{ 'Installation_WelcomeToCommunity'|translate }}</h2>
-<p>
- {{ 'Installation_CollaborativeProject'|translate }}
-</p>
-<p>
- {{ 'Installation_GetInvolved'|translate('<a rel="noreferrer" target="_blank" href="http://piwik.org/get-involved/">','</a>')|raw }}
- {{ 'General_HelpTranslatePiwik'|translate("<a rel='noreferrer' target='_blank' href=\'http://piwik.org/translations/\'>","<\/a>")|raw }}
-</p>
-<p>{{ 'Installation_WeHopeYouWillEnjoyPiwik'|translate }}</p>
-<p><i>{{ 'Installation_HappyAnalysing'|translate }}</i></p>
-<br/>
-
-<h2>{{ 'Installation_DefaultSettings'|translate }}</h2>
-<p>{{ 'Installation_DefaultSettingsHelp'|translate }}</p>
-{% if errorMessage is defined %}
- <div class="error">
- <img src="plugins/Morpheus/images/error_medium.png"/>
- {{ 'General_Error'|translate }}:
- <br/>- {{ errorMessage|raw }}
- </div>
-{% endif %}
-{% if form_data is defined %}
- {% include "genericForm.twig" %}
-{% endif %}
+ <h2>{{ 'Installation_Congratulations'|translate|raw }}</h2>
+
+ {{ 'Installation_CongratulationsHelp'|translate|raw }}
+
+ <h3>{{ 'Installation_WelcomeToCommunity'|translate }}</h3>
+ <p>
+ {{ 'Installation_CollaborativeProject'|translate }}
+ </p>
+ <p>
+ {{ 'Installation_GetInvolved'|translate('<a rel="noreferrer" target="_blank" href="http://piwik.org/get-involved/">','</a>')|raw }}
+ {{ 'General_HelpTranslatePiwik'|translate("<a rel='noreferrer' target='_blank' href=\'http://piwik.org/translations/\'>","<\/a>")|raw }}
+ </p>
+ <p>{{ 'Installation_WeHopeYouWillEnjoyPiwik'|translate }}</p>
+ <p><i>{{ 'Installation_HappyAnalysing'|translate }}</i></p>
+
+ <h3>{{ 'Installation_DefaultSettings'|translate }}</h3>
+ <p>{{ 'Installation_DefaultSettingsHelp'|translate }}</p>
+
+ {% if errorMessage is defined %}
+ <div class="alert alert-danger">
+ {{ 'General_Error'|translate }}:
+ <br/>- {{ errorMessage|raw }}
+ </div>
+ {% endif %}
+
+ {% if form_data is defined %}
+ {% include "genericForm.twig" %}
+ {% endif %}
{% endblock %}