blob: ac4dd8aed6a87b9d0536e92f3ef914c5c4acdaae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* FORGE password input library.
*
* $Id$
*
* @package Forge
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Form_Password_Core extends Form_Input {
protected $data = array
(
'type' => 'password',
'class' => 'password',
'value' => '',
);
protected $protect = array('type');
} // End Form Password
|