2011-09-25 21:33:22 +00:00
|
|
|
<form action="index.php" method="post">
|
2011-08-29 18:37:18 +00:00
|
|
|
<fieldset>
|
|
|
|
<?php echo $l->t('You will receive a link to reset your password via Email.'); ?>
|
|
|
|
<?php if ($_['requested']): ?>
|
2011-08-29 19:01:05 +00:00
|
|
|
<?php echo $l->t('Requested'); ?>
|
2011-08-29 18:37:18 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php if ($_['error']): ?>
|
2011-08-29 19:01:05 +00:00
|
|
|
<?php echo $l->t('Login failed!'); ?>
|
2011-08-29 18:37:18 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<input type="text" name="user" id="user" placeholder="<?php echo $l->t('Username or Email'); ?>" value="" autocomplete="off" required autofocus />
|
|
|
|
<input type="submit" id="submit" value="<?php echo $l->t('Request reset'); ?>" />
|
|
|
|
<?php endif; ?>
|
|
|
|
</fieldset>
|
2011-09-25 21:33:22 +00:00
|
|
|
</form>
|