diff options
Diffstat (limited to 'views/default/user/settings')
-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 |