This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#index: | |
# path: / | |
# controller: App\Controller\DefaultController::index | |
logout: | |
path: /logout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="page-wrapper"> | |
{% if app.flashes %} | |
<div class="container"> | |
{% for label, messages in app.flashes %} | |
{% for message in messages %} | |
<div class="alert alert-{{ label }} alert-dismissible fade show" role="alert"> | |
<button type="button" class="close" data-dismiss="alert" aria-label="Close"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Form; | |
use Symfony\Component\Form\AbstractType; | |
use Symfony\Component\Form\FormBuilderInterface; | |
use Symfony\Component\Form\Extension\Core\Type\ChoiceType; | |
use App\Form\Type\FormuleChoiceType; |