Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 17002 Rev 17165
Línea 1... Línea 1...
1
<?php
1
<?php
Línea 2... Línea 2...
2
 
2
 
Línea 3... Línea 3...
3
declare(strict_types=1);
3
declare(strict_types=1);
Línea 4... Línea 4...
4
 
4
 
Línea -... Línea 5...
-
 
5
namespace LeadersLinked\Form\User;
-
 
6
 
Línea 5... Línea 7...
5
namespace LeadersLinked\Form;
7
use Laminas\Form\Form;
6
 
8
 
7
use Laminas\Form\Form;
-
 
8
 
9
use LeadersLinked\Form\User\ChangePasswordFilter;
9
 
10
 
Línea 10... Línea 11...
10
class ChangePasswordForm extends Form
11
 
11
{
12
class ChangePasswordForm extends Form
Línea 46... Línea 47...
46
             'attributes' => [
47
             'attributes' => [
47
                 'maxlength' => 25,
48
                 'maxlength' => 25,
48
                 'id' => 'password',
49
                 'id' => 'password',
49
             ]
50
             ]
50
         ]);
51
         ]);
51
         
-
 
52
         
52
                 
53
         $this->add([
53
         $this->add([
54
             'name' => 'confirmation',
54
             'name' => 'confirmation',
55
             'type' => \Laminas\Form\Element\Password::class,
55
             'type' => \Laminas\Form\Element\Password::class,
56
             'attributes' => [
56
             'attributes' => [
57
                 'maxlength' => 25,
57
                 'maxlength' => 25,
58
                 'id' => 'confirmation',
58
                 'id' => 'confirmation',
59
             ]
59
             ]
60
         ]);
60
         ]);
61
    }
61
    }     
62
 
-
 
63
      
-
 
64
}
62
}
65
63