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.

27 line
982B

  1. <?php
  2. use yii\helpers\Html;
  3. use common\models\User ;
  4. use common\helpers\Url ;
  5. ?>
  6. <p>Bonjour <?= Html::encode($user->prenom) ?>,</p>
  7. <p>Votre inscription sur <strong>La boîte à pain</strong> a bien été prise en compte.</p>
  8. <p>Voici votre identifiant de connexion : <br />
  9. <strong><?= Html::encode($user->email) ?></strong></p>
  10. <?php if($user->status == User::STATUS_BOULANGER): ?>
  11. <p>Vous pouvez dès maintenant vous connecter à votre <a href="<?= Url::backend(); ?>">Espace boulanger</a> pour mettre
  12. en place votre système de réservation.</p>
  13. <?php else: ?>
  14. <?php if(!is_null($etablissement)): ?>
  15. <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>
  16. <?php else: ?>
  17. <p>Vous pouvez maintenant passer commande chez votre producteur.</p>
  18. <?php endif; ?>
  19. <?php endif; ?>
  20. <p>À bientôt.</p>