aboutsummaryrefslogtreecommitdiff
path: root/views/default/core/settings/account/password.php
blob: 0ee215f9c6284d9f36132d24a32af822913d13e8 (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
43
44
45
<?php
/**
 * Provide a way of setting your password
 *
 * @package Elgg
 * @subpackage Core
 */

$user = elgg_get_page_owner_entity();

if ($user) {
?>
<div class="elgg-module elgg-module-info">
	<div class="elgg-head">
		<h3><?php echo elgg_echo('user:set:password'); ?></h3>
	</div>
	<div class="elgg-body">
		<?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>
</div>
<?php
}