diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-04 17:08:31 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-04 17:08:31 +0000 |
commit | d3efed2f847ced2ecfaa536856f6a0acc4cddbfc (patch) | |
tree | 101e69848d61e532d0514573394eba30409da737 /views/default/user/settings/password.php | |
parent | 55f2853ec8b29dd8ca557c0dd82cd0de50946ec0 (diff) | |
download | elgg-d3efed2f847ced2ecfaa536856f6a0acc4cddbfc.tar.gz elgg-d3efed2f847ced2ecfaa536856f6a0acc4cddbfc.tar.bz2 |
User settings
git-svn-id: https://code.elgg.org/elgg/trunk@1689 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/user/settings/password.php')
-rw-r--r-- | views/default/user/settings/password.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/views/default/user/settings/password.php b/views/default/user/settings/password.php index b40a131e6..b180609c6 100644 --- a/views/default/user/settings/password.php +++ b/views/default/user/settings/password.php @@ -14,10 +14,15 @@ if ($user) { ?> - <h2><?php echo elgg_echo('user:set:password'); ?></h2> + <h3><?php echo elgg_echo('user:set:password'); ?></h3> <p> - <?php echo elgg_echo('user:password:label'); ?> : <input type="password" name="password" value="" /> - <?php echo elgg_echo('user:password2:label'); ?> : <input type="password" name="password2" value="" /> + <?php echo elgg_echo('user:password:label'); ?>:
+ <?php
+ echo elgg_view('input/password',array('internalname' => 'password'));
+ ?><br /> + <?php echo elgg_echo('user:password2:label'); ?>: <?php
+ echo elgg_view('input/password',array('internalname' => 'password2'));
+ ?> </p> <?php } ?>
\ No newline at end of file |