forked from .cyb/cyberman
Update 'views/login.tt'
This commit is contained in:
parent
25647f7ae1
commit
7281ba0ee1
|
@ -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 />
|
||||
[ <button action="submit" class="textButton">log in</button> ]
|
||||
[ <a href="index" class="bracketButton">go back</a> ]
|
||||
[ <button action="submit" class="textButton">Log in</button> ]
|
||||
[ <a href="index" class="bracketButton">Go back</a> ]
|
||||
<br /><br />
|
||||
[ <a href="forgot" class="bracketButton">recover forgotten password</a> ]
|
||||
[ <a href="forgot" class="bracketButton">Recover password</a> ]
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue