You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
1.0 KiB

<h1>{$page->title}</h1>
{if isset($error) && $error != ''}
<div class="error">{$error}</div>
{/if}
{if $confirmed == '' && $sent == ''}
<p>
Please enter the email address you used to register and we will send an email to reset your password. If you cannot remember your email, or no longer have access to it, please <a href="{$smarty.const.WWW_TOP}/contact-us">contact us</a>.
</p>
<form method="post" action="forgottenpassword?action=submit">
<table class="data">
<tr><th><label for="email">Email:</label> <em>*</em></th>
<td>
<input id="email" autocomplete="off" name="email" value="{$email}" type="email"/>
</td>
</tr>
<tr><th></th><td>{$page->smarty->fetch('captcha.tpl')}<input type="submit" value="Request Password Reset" /><div style="float:right;" class="hint"><em>*</em> Indicates mandatory field.</div></td></tr>
</table>
</form>
{elseif $sent != ''}
<p>
A password reset request has been sent to your email.
</p>
{else}
<p>
Your password has been reset and sent to you in an email.
</p>
{/if}