2017-07-15 20:24:05 +02:00
|
|
|
<center>
|
|
|
|
<br />
|
|
|
|
<h1>Log in</h1>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<% IF account_created %>
|
|
|
|
<div class="msgBox">
|
2017-07-17 00:36:46 +02:00
|
|
|
Your account has been created and a confirmation email sent to <% params.email | html_entity %>. Please confirm your email address, then log in here.
|
2017-07-15 20:24:05 +02:00
|
|
|
</div>
|
|
|
|
<br /><br />
|
|
|
|
<% END %>
|
2017-07-18 14:40:48 +02:00
|
|
|
|
|
|
|
<% IF params.pwchange %>
|
|
|
|
<div class="msgBox">
|
|
|
|
Your password has been changed and all browsers logged out. Please log in again here.
|
|
|
|
</div>
|
|
|
|
<br /><br />
|
|
|
|
<% END %>
|
2017-07-15 20:24:05 +02:00
|
|
|
|
|
|
|
<% IF error %>
|
|
|
|
<div class="msgBox">
|
|
|
|
<% IF e_no_user %>
|
2017-07-17 00:36:46 +02:00
|
|
|
The email address <% params.email | html_entity %> is not registered.
|
2017-07-15 20:24:05 +02:00
|
|
|
<% END %>
|
|
|
|
<% IF e_pass %>
|
|
|
|
Your password was incorrect, sorry.
|
|
|
|
<% END %>
|
|
|
|
<% IF e_not_confirmed %>
|
2017-07-17 00:36:46 +02:00
|
|
|
Please confirm your email address using the link sent to <% params.email | html_entity %>.
|
2017-07-15 20:24:05 +02:00
|
|
|
<% END %>
|
|
|
|
</div>
|
|
|
|
<br /><br />
|
|
|
|
<% END %>
|
|
|
|
|
|
|
|
</center>
|
|
|
|
|
|
|
|
<div class="body">
|
|
|
|
<form method=POST class="login" action="login">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<label for="email">Email address:</label>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="email" name="email" id="email" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<label for="password">Password:</label>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="password" name="password" id="password" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br />
|
2017-07-28 00:26:10 +02:00
|
|
|
[ <button action="submit" class="textButton">log in</button> ]
|
|
|
|
[ <a href="index" class="bracketButton">go back</a> ]
|
2017-08-19 16:03:54 +02:00
|
|
|
<br /><br />
|
|
|
|
[ <a href="forgot" class="bracketButton">recover forgotten password</a> ]
|
2017-07-15 20:24:05 +02:00
|
|
|
</form>
|
|
|
|
</div>
|