summaryrefslogtreecommitdiff
path: root/modules/forge/libraries/Form_Password.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/forge/libraries/Form_Password.php')
-rw-r--r--modules/forge/libraries/Form_Password.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/forge/libraries/Form_Password.php b/modules/forge/libraries/Form_Password.php
new file mode 100644
index 00000000..ac4dd8ae
--- /dev/null
+++ b/modules/forge/libraries/Form_Password.php
@@ -0,0 +1,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 \ No newline at end of file