Files
redline.com.pl/modules/freshmail/views/templates/admin/alerts.tpl
2024-11-11 18:46:54 +01:00

18 lines
599 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="bootstrap">
{if isset($error)}
<div class="alert alert-success">{$error|escape:'htmlall':'UTF-8'}</div>
{/if}
{if isset($success)}
<div class="alert alert-success">{$success|escape:'htmlall':'UTF-8'}</div>
{/if}
{if isset($successUpdate)}
<div class="alert alert-success">{$successUpdate|escape:'htmlall':'UTF-8'}</div>
{/if}
{if isset($errorEmptyKeys)}
<div class="alert alert-warning">
<button data-dismiss="alert" class="close" type="button">×</button>
{l s='Please connect to your FreshMail account on the: ' mod='freshmail'}
</div>
{/if}
</div>