2017-05-17 16:35:10 +03:00
|
|
|
<div class="error">
|
|
|
|
<h2><?php p($l->t('Error')) ?></h2>
|
|
|
|
<ul>
|
2020-04-10 15:19:56 +03:00
|
|
|
<?php foreach ($_["errors"] as $error):?>
|
2017-05-17 16:35:10 +03:00
|
|
|
<li>
|
|
|
|
<p><?php p($error['error']) ?></p>
|
2020-04-10 15:19:56 +03:00
|
|
|
<?php if (isset($error['hint']) && $error['hint']): ?>
|
2017-03-29 01:42:22 +03:00
|
|
|
<p class='hint'><?php p($error['hint']) ?></p>
|
2014-09-11 16:14:02 +04:00
|
|
|
<?php endif;?>
|
2011-08-08 21:50:36 +04:00
|
|
|
</li>
|
|
|
|
<?php endforeach ?>
|
2017-05-17 16:35:10 +03:00
|
|
|
</ul>
|
|
|
|
</div>
|