aboutsummaryrefslogtreecommitdiff
path: root/views/default/account/forms/forgotten_password.php
blob: 18a9888fd885cded1b15ac0b19a6bc4b6b5e2258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
	/**
	 * Elgg forgotten 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/
	 */
?>
<div id="forgotten_box">
	<form action="<?php echo $vars['url']; ?>actions/user/requestnewpassword" method="post">
		<p><?php echo elgg_echo('user:password:text'); ?></p>
		<p><b><?php echo elgg_echo('username'); ?></b> <?php echo elgg_view('input/text', array('internalname' => 'username')); ?></p>
		<p><input type="submit" name="submit" class="submit_button" value="<?php echo elgg_echo('request'); ?>" /></p>
	</form>
</div>