diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-26 12:00:44 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-26 12:00:44 +0000 |
commit | 85aa957de8319e6c2ca6fc39190bb7fd2c5e602d (patch) | |
tree | c96028afa0d1e9b099342d580d6dc11a7a0b6b0f /views/default | |
parent | 27e6aeae6cc813ef7f0dadd67f3002871bce3356 (diff) | |
download | elgg-85aa957de8319e6c2ca6fc39190bb7fd2c5e602d.tar.gz elgg-85aa957de8319e6c2ca6fc39190bb7fd2c5e602d.tar.bz2 |
Fixes #91 and #97
git-svn-id: https://code.elgg.org/elgg/trunk@1143 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/user/settings/password.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/views/default/user/settings/password.php b/views/default/user/settings/password.php new file mode 100644 index 000000000..27b48e63d --- /dev/null +++ b/views/default/user/settings/password.php @@ -0,0 +1,33 @@ +<?php + /** + * Provide a way of setting your password + * + * @package Elgg + * @subpackage Core + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Marcus Povey + * @copyright Curverider Ltd 2008 + * @link http://elgg.org/ + */ + + $user = $_SESSION['user']; + + if ($user) { +?> + <h2><?php echo elgg_echo('user:set:password'); ?></h2> + <form action="<?php echo $vars['url']; ?>action/user/password" method="post"> + <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="" /> + </p> + + <p> + <input type="submit" value="<?php + + echo elgg_echo('save'); + + ?>" /> + </p> + </form> + +<?php } ?>
\ No newline at end of file |