Fix latest merge

This commit is contained in:
Nicolas Le Goff
2014-06-24 00:34:07 +02:00
parent e711f9002e
commit 3bdb63f94e
10 changed files with 25 additions and 136 deletions

View File

@@ -43,7 +43,13 @@ class EmailFormType extends AbstractType
$builder->add('smtp-user', 'text', [
'label' => 'SMTP user',
]);
$builder->add('smtp-password', 'text', [
$builder->add('hidden-password', 'password', [
'label' => false,
'attr' => array(
'style' => 'display:none'
)
]);
$builder->add('smtp-password', 'password', [
'label' => 'SMTP password',
]);
}