Files
projet_php/views/_partial/messages.tpl
2026-02-26 00:19:11 +01:00

15 lines
289 B
Smarty

{if ($success_message != '')}
<div class="alert alert-success">
<p>{$success_message}</p>
</div>
{/if}
{if (isset($arrError) && count($arrError) > 0) }
<div class="alert alert-danger">
{foreach $arrError as $strError}
<p>{$strError}</p>
{/foreach}
</div>
{/if}