cyberman/views/forgot.tt

28 lines
761 B
Plaintext
Raw Permalink Normal View History

2017-08-19 16:03:54 +02:00
<center>
2017-08-20 00:45:25 +02:00
<br />
<h1 >Forgotten password</h1>
<br />
<% IF err || success %>
<div class="msgBox">
<% IF e_no_user %>
2019-02-23 05:56:12 +01:00
An email has been sent if there is an account. Please click the link to reset your password.
2017-08-20 00:45:25 +02:00
<% END %>
<% IF success %>
2019-02-23 05:56:12 +01:00
An email has been sent if there is an account. Please click the link to reset your password.
2017-08-20 00:45:25 +02:00
<% END %>
</div>
<br /><br />
<% END %>
2017-08-19 16:03:54 +02:00
</center>
<div class="body">
2017-08-20 00:45:25 +02:00
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>
2019-02-23 05:56:12 +01:00
<input type="email" name="email" id="email" value="" required/>
2017-08-20 00:45:25 +02:00
<br />
2019-02-23 05:56:12 +01:00
[&nbsp;<button action="submit" class="textButton">Send link</button>&nbsp;]
2017-08-20 00:45:25 +02:00
</form>
2017-08-19 16:03:54 +02:00
</div>