Proyectos de Subversion LeadersLinked - Backend

Rev

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

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