aboutsummaryrefslogtreecommitdiff
path: root/views/default/user/settings/password.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/user/settings/password.php')
-rw-r--r--views/default/user/settings/password.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/views/default/user/settings/password.php b/views/default/user/settings/password.php
deleted file mode 100644
index 0bd7f38f8..000000000
--- a/views/default/user/settings/password.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * Provide a way of setting your password
- *
- * @package Elgg
- * @subpackage Core
- */
-
-$user = elgg_get_page_owner();
-
-if ($user) {
-?>
-<div class="user-settings password">
-<h3><?php echo elgg_echo('user:set:password'); ?></h3>
-
- <?php
- // only make the admin user enter current password for changing his own password.
- if (!isadminloggedin() || isadminloggedin() && $user->guid == get_loggedin_userid()) {
- ?>
- <p>
- <?php echo elgg_echo('user:current_password:label'); ?>:
- <?php
- echo elgg_view('input/password', array('internalname' => 'current_password'));
- ?>
- </p>
- <?php } ?>
-
- <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>
-</div>
-<?php
-} \ No newline at end of file