You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- use yii\helpers\Html;
- use common\models\User ;
- use common\helpers\Url ;
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->prenom) ?>,</p>
-
- <p>Votre inscription sur <strong>La boîte à pain</strong> a bien été prise en compte.</p>
-
- <p>Voici votre identifiant de connexion : <br />
- <strong><?= Html::encode($user->email) ?></strong></p>
-
- <?php if($user->status == User::STATUS_BOULANGER): ?>
- <p>Vous pouvez dès maintenant vous connecter à votre <a href="<?= Url::backend(); ?>">Espace boulanger</a> pour mettre
- en place votre système de réservation.</p>
- <?php else: ?>
- <?php if(!is_null($etablissement)): ?>
- <p>Vous pouvez maintenant <a href="<?= Url::frontend().'index.php?r=commande/create&id_etablissement='.$etablissement->id ?>">passer commande</a> chez votre producteur <strong><?= Html::encode($etablissement->nom); ?></strong>.</p>
- <?php else: ?>
- <p>Vous pouvez maintenant passer commande chez votre producteur.</p>
- <?php endif; ?>
- <?php endif; ?>
-
- <p>À bientôt.</p>
|