blob: 1bd70a419fe8edefdf159996b38170acf998523d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/**
* Elgg password input
* Displays a password input field
*
* @package Elgg
* @subpackage Core
*
* @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
*
*/
$defaults = array(
'class' => 'elgg-input-password',
'disabled' => FALSE,
)
$attrs = array_merge($defaults, $vars);
?>
<input type="password" <?php echo elgg_format_attributes($attrs); ?> />
|