blob: 0bd7f38f80baab1484a714a882f5e5ec6f30b3a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
}
|