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

sent.tpl « templates « Feedback « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65495497bfaa2c0d8ecf6c7e5fc9df29161374c6 (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
28
29
30
31
32
33
{literal}
<style>
body {
	font-family: Georgia,"Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size:0.9em;
	padding:0.2em;
}
#error {
	color: red;
	text-align: center;
	border: 2px solid red;
	background-color:#FFFBFB;
	margin: 10px;
	padding: 10px;
}
#success {
	color: #38D73B;
	text-align: center;
	border: 2px solid red;
	margin: 10px;
	padding: 10px;
}
</style>
{/literal}

{if isset($ErrorString)}
	<div id="error"><strong>{'General_Error'|translate}:</strong> {$ErrorString}</div>
	<p>Please manually send your message at <a href='mailto:hello@piwik.org'>hello@piwik.org</a></p>
	<p>{$message}</p>
{else}
	<div id="success">Your message was sent to Piwik.</div>
	<p><strong>Thank you for your helping us making Piwik better!</strong><br /> The Piwik Team</p>	
{/if}