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 %>
<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>
<br /><br />
<% END %>
<% IF params.pwchange %>
<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>
<br /><br />
<% END %>
@ -20,13 +20,13 @@
<% IF error %>
<div class="msgBox">
<% 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 %>
<% IF e_pass %>
Your password was incorrect, sorry.
Your email address is not registered or the password is incorrect.
<% END %>
<% IF e_not_confirmed %>
Please confirm your email address using the link sent to <% params.email | html_entity %>.
Please confirm your email address.
<% END %>
</div>
<br /><br />
@ -42,7 +42,7 @@
<label for="email">Email address:</label>
</td>
<td>
<input type="email" name="email" id="email" />
<input type="email" name="email" id="email" required/>
</td>
</tr>
<tr>
@ -50,14 +50,14 @@
<label for="password">Password:</label>
</td>
<td>
<input type="password" name="password" id="password" />
<input type="password" name="password" id="password" required/>
</td>
</tr>
</table>
<br />
[&nbsp;<button action="submit" class="textButton">log&nbsp;in</button>&nbsp;]
[&nbsp;<a href="index" class="bracketButton">go&nbsp;back</a>&nbsp;]
[&nbsp;<button action="submit" class="textButton">Log&nbsp;in</button>&nbsp;]
[&nbsp;<a href="index" class="bracketButton">Go&nbsp;back</a>&nbsp;]
<br /><br />
[&nbsp;<a href="forgot" class="bracketButton">recover forgotten password</a>&nbsp;]
[&nbsp;<a href="forgot" class="bracketButton">Recover password</a>&nbsp;]
</form>
</div>