aboutsummaryrefslogtreecommitdiff
path: root/views/default/core/settings/account/password.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/core/settings/account/password.php')
-rw-r--r--views/default/core/settings/account/password.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/views/default/core/settings/account/password.php b/views/default/core/settings/account/password.php
new file mode 100644
index 000000000..0bd7f38f8
--- /dev/null
+++ b/views/default/core/settings/account/password.php
@@ -0,0 +1,42 @@
+<?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