mirror of
https://github.com/Pathduck/gallery3.git
synced 2024-10-29 21:07:18 -04:00
23 lines
518 B
PHP
23 lines
518 B
PHP
<?php defined("SYSPATH") or die("No direct script access.");
|
|
/**
|
|
* FORGE password input library.
|
|
*
|
|
* $Id: Form_Password.php 3326 2008-08-09 21:24:30Z Shadowhand $
|
|
*
|
|
* @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
|