diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 20:54:48 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 20:54:48 +0000 |
commit | a1abec1d617c9330d9c06bda2f462d213f013f53 (patch) | |
tree | 7e2d2d3007f4b2155a056fb43d3c428b65a96f34 /views/default/user/settings/password.php | |
parent | 70b08afa64465f4d3457ba6e1c4cc2df1dd2069b (diff) | |
download | elgg-a1abec1d617c9330d9c06bda2f462d213f013f53.tar.gz elgg-a1abec1d617c9330d9c06bda2f462d213f013f53.tar.bz2 |
Finish up standardizing views/default/*
git-svn-id: http://code.elgg.org/elgg/trunk@3557 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/user/settings/password.php')
-rw-r--r-- | views/default/user/settings/password.php | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/views/default/user/settings/password.php b/views/default/user/settings/password.php index d2b794808..5cefe3821 100644 --- a/views/default/user/settings/password.php +++ b/views/default/user/settings/password.php @@ -1,28 +1,27 @@ <?php - /** - * Provide a way of setting your password - * - * @package Elgg - * @subpackage Core +/** + * Provide a way of setting your password + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - * @author Curverider Ltd +$user = page_owner_entity(); - * @link http://elgg.org/ - */ - - $user = page_owner_entity(); - - if ($user) { +if ($user) { ?> - <h3><?php echo elgg_echo('user:set:password'); ?></h3> - <p> - <?php echo elgg_echo('user:password:label'); ?>: - <?php - echo elgg_view('input/password',array('internalname' => 'password')); - ?></p><p> - <?php echo elgg_echo('user:password2:label'); ?>: <?php - echo elgg_view('input/password',array('internalname' => 'password2')); - ?> - </p> +<h3><?php echo elgg_echo('user:set:password'); ?></h3> +<p> + <?php echo elgg_echo('user:password:label'); ?>: + <?php + echo elgg_view('input/password',array('internalname' => 'password')); + ?></p><p> + <?php echo elgg_echo('user:password2:label'); ?>: <?php + echo elgg_view('input/password',array('internalname' => 'password2')); + ?> +</p> -<?php } ?>
\ No newline at end of file +<?php +}
\ No newline at end of file |