aboutsummaryrefslogtreecommitdiffstats
path: root/core/lostpassword/templates/lostpassword.php
blob: 4b871963b8055fbc6159ba0b8dcb595acd51da42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<form action="index.php" method="post">
	<fieldset>
		<?php echo $l->t('You will receive a link to reset your password via Email.'); ?>
		<?php if ($_['requested']): ?>
			<?php echo $l->t('Requested'); ?>
		<?php else: ?>
			<?php if ($_['error']): ?>
				<?php echo $l->t('Login failed!'); ?>
			<?php endif; ?>
			<p class="infield">
				<label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
				<input type="text" name="user" id="user" value="" autocomplete="off" required autofocus />
			</p>
			<input type="submit" id="submit" value="<?php echo $l->t('Request reset'); ?>" />
		<?php endif; ?>
	</fieldset>
</form>