diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-15 15:23:27 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-15 15:23:27 +0000 |
commit | 206f56148df2992769f713502e4168ab0990fd2c (patch) | |
tree | 533f70bcc4898c1397007d2f11a7a89188242999 /views/default/input/password.php | |
parent | 71d39f1c4ca21bd25b9bda01451ae651cbbabb64 (diff) | |
download | elgg-206f56148df2992769f713502e4168ab0990fd2c.tar.gz elgg-206f56148df2992769f713502e4168ab0990fd2c.tar.bz2 |
Cleaning up input field views
git-svn-id: https://code.elgg.org/elgg/trunk@464 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/input/password.php')
-rw-r--r-- | views/default/input/password.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/views/default/input/password.php b/views/default/input/password.php index 84ac9b161..efa0fc74b 100644 --- a/views/default/input/password.php +++ b/views/default/input/password.php @@ -1 +1,22 @@ +<?php
+
+ /**
+ * Elgg password input
+ * Displays a password input field
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ *
+ * @uses $vars['value'] The current value, if any
+ * @uses $vars['js'] Any Javascript to enter into the input tag
+ * @uses $vars['internalname'] The name of the input field
+ *
+ */
+
+?>
+
<input type="password" <?php echo $vars['js']; ?> name="<?php echo $vars['internalname']; ?>" value="<?php echo $vars['value']; ?>" />
\ No newline at end of file |