Proyectos de Subversion LeadersLinked - Services

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 283
Línea 23... Línea 23...
23
 
23
 
24
         $this->add([
24
         $this->add([
25
             'name' => 'password',
25
             'name' => 'password',
26
             'type' => \Laminas\Form\Element\Password::class,
26
             'type' => \Laminas\Form\Element\Password::class,
27
             'attributes' => [
27
             'attributes' => [
28
                 'maxlength' => 16,
28
                 'maxlength' => 25,
29
                 'id' => 'password',
29
                 'id' => 'password',
30
             ]
30
             ]
31
         ]);
31
         ]);
32
         $this->add([
32
         $this->add([
33
             'name' => 'confirmation',
33
             'name' => 'confirmation',
34
             'type' => \Laminas\Form\Element\Password::class,
34
             'type' => \Laminas\Form\Element\Password::class,
35
             'attributes' => [
35
             'attributes' => [
36
                 'maxlength' => 16,
36
                 'maxlength' => 25,
37
                 'id' => 'confirmation',
37
                 'id' => 'confirmation',
38
             ]
38
             ]
Línea 39... Línea 39...
39
         ]);
39
         ]);