Update 'views/login.tt'

This commit is contained in:
mia 2019-02-23 05:53:45 +01:00
parent 25647f7ae1
commit 7281ba0ee1
1 changed files with 10 additions and 10 deletions

View File

@ -5,14 +5,14 @@
<% IF account_created %> <% IF account_created %>
<div class="msgBox"> <div class="msgBox">
Your account has been created and a confirmation email sent to <% params.email | html_entity %>. Please confirm your email address, then log in here. Your account has been created and a confirmation email sent to <% params.email | html_entity %>. Please confirm your email address to confirm your registration.
</div> </div>
<br /><br /> <br /><br />
<% END %> <% END %>
<% IF params.pwchange %> <% IF params.pwchange %>
<div class="msgBox"> <div class="msgBox">
Your password has been changed and all browsers logged out. Please log in again here. Your password has been changed and all sessions logged out. Please log in again.
</div> </div>
<br /><br /> <br /><br />
<% END %> <% END %>
@ -20,13 +20,13 @@
<% IF error %> <% IF error %>
<div class="msgBox"> <div class="msgBox">
<% IF e_no_user %> <% IF e_no_user %>
The email address <% params.email | html_entity %> is not registered. Your email address is not registered or the password is incorrect.
<% END %> <% END %>
<% IF e_pass %> <% IF e_pass %>
Your password was incorrect, sorry. Your email address is not registered or the password is incorrect.
<% END %> <% END %>
<% IF e_not_confirmed %> <% IF e_not_confirmed %>
Please confirm your email address using the link sent to <% params.email | html_entity %>. Please confirm your email address.
<% END %> <% END %>
</div> </div>
<br /><br /> <br /><br />
@ -42,7 +42,7 @@
<label for="email">Email address:</label> <label for="email">Email address:</label>
</td> </td>
<td> <td>
<input type="email" name="email" id="email" /> <input type="email" name="email" id="email" required/>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -50,14 +50,14 @@
<label for="password">Password:</label> <label for="password">Password:</label>
</td> </td>
<td> <td>
<input type="password" name="password" id="password" /> <input type="password" name="password" id="password" required/>
</td> </td>
</tr> </tr>
</table> </table>
<br /> <br />
[&nbsp;<button action="submit" class="textButton">log&nbsp;in</button>&nbsp;] [&nbsp;<button action="submit" class="textButton">Log&nbsp;in</button>&nbsp;]
[&nbsp;<a href="index" class="bracketButton">go&nbsp;back</a>&nbsp;] [&nbsp;<a href="index" class="bracketButton">Go&nbsp;back</a>&nbsp;]
<br /><br /> <br /><br />
[&nbsp;<a href="forgot" class="bracketButton">recover forgotten password</a>&nbsp;] [&nbsp;<a href="forgot" class="bracketButton">Recover password</a>&nbsp;]
</form> </form>
</div> </div>