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