cyberman/views/forgot.tt

28 lines
761 B
Plaintext

<center>
<br />
<h1 >Forgotten password</h1>
<br />
<% IF err || success %>
<div class="msgBox">
<% IF e_no_user %>
An email has been sent if there is an account. Please click the link to reset your password.
<% END %>
<% IF success %>
An email has been sent if there is an account. Please click the link to reset your password.
<% END %>
</div>
<br /><br />
<% END %>
</center>
<div class="body">
Enter your email into the field below and we'll send an email with a link to reset your password.
<br />
<form method="POST">
<label for="email">Email address:</label>
<input type="email" name="email" id="email" value="" required/>
<br />
[&nbsp;<button action="submit" class="textButton">Send link</button>&nbsp;]
</form>
</div>