diff --git a/Controleur/ControleurRecherche.php b/Controleur/ControleurRecherche.php
index 44ad61d4..aeffd0b7 100755
--- a/Controleur/ControleurRecherche.php
+++ b/Controleur/ControleurRecherche.php
@@ -30,13 +30,27 @@ class ControleurRecherche extends Controleur {
if(!empty($_POST)) {
+ $csrf_token = trim($this->requete->getParametreFormulaire("csrf_token"));
+ $numeroBeneficiaire = trim($this->requete->getParametreFormulaire("numeroBeneficiaire"));
+ $numeroAdherent = trim($this->requete->getParametreFormulaire("numeroAdherent"));
+ $nomBeneficiaire = trim($this->requete->getParametreFormulaire("nomBeneficiaire"));
+ $prenomsBeneficiaire = trim($this->requete->getParametreFormulaire("prenomsBeneficiaire"));
+ $telephonePortable = trim($this->requete->getParametreFormulaire("telephonePortable"));
+ $email = trim($this->requete->getParametreFormulaire("email"));
+
+ /*
$numeroBeneficiaire=trim($_POST['numeroBeneficiaire']);
$numeroAdherent=trim($_POST['numeroAdherent']);
$nomBeneficiaire=trim($_POST['nomBeneficiaire']);
$prenomsBeneficiaire=trim($_POST['prenomsBeneficiaire']);
$telephonePortable=trim($_POST['telephonePortable']);
$email=trim($_POST['email']);
+ */
+
+ var_dump($csrf_token);
+
+ exit;
if($numeroBeneficiaire != '')
{
diff --git a/Vue/gabarit.php b/Vue/gabarit.php
index adb7293d..d08fcd24 100755
--- a/Vue/gabarit.php
+++ b/Vue/gabarit.php
@@ -658,7 +658,6 @@
-