aboutsummaryrefslogtreecommitdiff
path: root/views/default/user/settings/password.php
blob: b40a131e6929025d4f57a808aa5888f2ea379b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
	/**
	 * Provide a way of setting your password
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Marcus Povey
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.org/
	 */

	$user = $_SESSION['user'];
	
	if ($user) {
?>
	<h2><?php echo elgg_echo('user:set:password'); ?></h2>
	<p>
		<?php echo elgg_echo('user:password:label'); ?> : <input type="password" name="password" value="" />
		<?php echo elgg_echo('user:password2:label'); ?> : <input type="password" name="password2" value="" />
	</p>

<?php } ?>