Current path: home/webdevt/cryptoimpot.fr/module/Application/view/application/partial/flash-messenger/
?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/view/application/partial
<?php
$flashMessenger = $this->flashMessenger();
// if ($this->flashMessenger()->setNamespace('register-form')->hasMessages()) :
?>
<?php if (!empty($this->form)) : ?>
<?php
$messages = $this->form->getMessages();
//var_dump($messages); exit;
?>
<?php if ($messages) : ?>
<div class="row justify-content-center align-items-center mt-5 ">
<div class="col col-sm-12 col-md-4 col-md-offset-4">
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<strong>Le formulaire n'est pas valide</strong>
<ul>
<?php //$messages = $this->flashMessenger()->setNamespace('register-form')->getMessages(); ?>
<?php foreach ($messages as $messageArray) : ?>
<!-- <strong>L'inscription a échoué</strong> -->
<?php foreach ($messageArray as $message) : ?>
<li><?php echo $this->translate($message); ?> </li>
<?php endforeach; ?>
<?php endforeach; ?>
</ul>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<?php endif ?>
<?php endif ?>
<?php if ($messages = $flashMessenger->setNamespace('error')->getMessages()) : ?>
<div class="row justify-content-center align-items-center mt-5 ">
<div class="col col-sm-12 col-md-4 col-md-offset-4">
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<?php //$messages = $this->flashMessenger()->setNamespace('register-form')->getMessages(); ?>
<strong>Le formulaire n'est pas valide</strong>
<ul>
<?php foreach ($messages as $message) : ?>
<?php //foreach ($message as $messageTxt) : ?>
<li><?php echo $this->translate($message); ?></li>
<?php //endforeach; ?>
<?php endforeach; ?>
</ul>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<?php endif; ?>
<?php if ($messages = $flashMessenger->setNamespace('success')->getMessages()) : ?>
<div class="row justify-content-center align-items-center mt-5 ">
<div class="col col-sm-12 col-md-4 col-md-offset-4">
<div class="alert alert-success alert-dismissible fade show" role="success">
<?php //$messages = $this->flashMessenger()->setNamespace('register-form')->getMessages(); ?>
<ul>
<?php foreach ($messages as $message) : ?>
<?php //foreach ($message as $messageTxt) : ?>
<li><?php echo $this->translate($message); ?></li>
<?php //endforeach; ?>
<?php endforeach; ?>
</ul>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<?php endif; ?>