blob: 609b39faa950f8a882386d02219a004f08b1e90b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
$defaults = array(
'placeholder' => elgg_echo('placeholder:password'),
);
$overrides = array(
'type' => 'password',
);
echo elgg_view('html/input', array_merge($defaults, $vars, $overrides));
|