Proyectos de Subversion LeadersLinked - Services

Rev

Rev 1 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 283
Línea 38... Línea 38...
38
        ]);
38
        ]);
39
         $this->add([
39
         $this->add([
40
            'name' => 'email',
40
            'name' => 'email',
41
            'type' => \Laminas\Form\Element\Text::class,
41
            'type' => \Laminas\Form\Element\Text::class,
42
            'attributes' => [
42
            'attributes' => [
43
                'maxlength' 	=> 64,
43
                'maxlength' 	=> 250,
44
                'id' 			=> 'email',
44
                'id' 			=> 'email',
45
            ]
45
            ]
46
        ]);
46
        ]);
47
         $this->add([
47
         $this->add([
48
             'name' => 'password',
48
             'name' => 'password',
49
             'type' => \Laminas\Form\Element\Text::class,
49
             'type' => \Laminas\Form\Element\Text::class,
50
             'attributes' => [
50
             'attributes' => [
51
                 'maxlength' 	=> 16,
51
                 'maxlength' 	=> 25,
52
                 'id' 			=> 'password',
52
                 'id' 			=> 'password',
53
             ]
53
             ]
54
         ]);
54
         ]);
55
         $this->add([
55
         $this->add([
56
             'name' => 'confirmation',
56
             'name' => 'confirmation',
57
             'type' => \Laminas\Form\Element\Text::class,
57
             'type' => \Laminas\Form\Element\Text::class,
58
             'attributes' => [
58
             'attributes' => [
59
                 'maxlength' 	=> 16,
59
                 'maxlength' 	=> 25,
60
                 'id' 			=> 'confirmation',
60
                 'id' 			=> 'confirmation',
61
             ]
61
             ]
62
         ]);
62
         ]);
Línea 63... Línea 63...
63
 
63