Guest User

Untitled

a guest
Jul 27th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. $username = $this->addElement('text', 'username', array(
  2. 'filters' => array('StringTrim', 'StringToLower'),
  3. 'validators' => array(
  4. 'Alpha',
  5. array('StringLength', false, array(3, 20)),
  6. ),
  7. 'required' => true,
  8. 'label' => 'Username:',
  9. ));
  10.  
  11. $password = $this->addElement('password', 'password', array(
  12. 'filters' => array('StringTrim'),
  13. 'validators' => array(
  14. 'Alnum',
  15. array('StringLength', false, array(6, 20)),
  16. ),
  17. 'required' => true,
  18. 'label' => 'Password:',
  19. ));
Add Comment
Please, Sign In to add comment