aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/password.php
blob: 22374c8d9d341d47da5fcc4012194c542dd14249 (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('input/default', array_merge($defaults, $vars, $overrides));