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