start.html.twig 470B

1234567891011121314151617181920212223
  1. {% extends "MuzichUserBundle::layout.html.twig" %}
  2. {% block title %}Inscription terminé{% endblock %}
  3. {% block content %}
  4. <h2>Bienvenue sur Muzich !</h2>
  5. <p>
  6. Bla bla bla ...
  7. </p>
  8. <h3>Choisissez vos tags préférés</h3>
  9. {% include "MuzichCoreBundle:Tag:tagFavoritesForm.html.twig" with {
  10. 'redirect' : 'home'
  11. } %}
  12. <p>
  13. Vous pourrez egallement modifier vos tags préféré dans la partie 'mon compte'.
  14. </p>
  15. {% endblock %}