blob: 2265ab117b24df56fd4c887c11f20b3f91fc2a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Elgg password input
* Displays a password input field
*
* @uses $vars['value'] The current value, if any
* @uses $vars['name'] The name of the input field
*
*/
$class = "input-password";
$value = htmlentities($vars['value'], ENT_QUOTES, 'UTF-8');
?>
<input type="password" name="<?php echo $vars['name']; ?>" value="<?php echo $value; ?>" class="<?php echo $class; ?>" />
|