$nom = '';
$email = '';
$tel = '';
$message = '';
if (isset($error)) {
$nom = $this->request->data['Contact']['nom'];
$email = $this->request->data['Contact']['email'];
if (isset($this->request->data['Contact']['tel'])) {
$tel = $this->request->data['Contact']['tel'];
}
$message = $this->request->data['Contact']['message'];
}
$this->assign('common', 'contact');
$this->extend('/Common/container');
$this->assign('textHeader', $titrePage);
echo $this->Html->tag('div', null, array('class' => 'row contact'));
echo $contenuPage;
echo $this->Form->create('Contact', array('url' => $this->request->here));
echo $this->Html->tag('div', null, array('class' => 'row form'));
echo $this->Html->tag('div', null, array('class' => 'col-sm-6 row-col'));
echo $this->Html->tag('div', null, array('class' => 'box'));
?>