15 lines
732 B
PHP
15 lines
732 B
PHP
|
<div style="text-align: center;">
|
||
|
<p>If you have forgotten your password, we can issue you a temporary access code via email that will allow you to change your password.</p>
|
||
|
<p>To start this process, please enter your email address.</p>
|
||
|
</div>
|
||
|
|
||
|
<?php echo Form::open(); ?>
|
||
|
<table class="login">
|
||
|
<tr><td><b>Email Address</b></td></tr>
|
||
|
<tr><td><?php echo Form::input('email',null,array('id'=>'login-uid','size'=>40));?></td></tr>
|
||
|
<tr><td colspan="2" style="text-align: center;"><?php echo Form::submit('submit',_('Reset'));?></td></tr>
|
||
|
</table>
|
||
|
<?php echo Form::close(); ?>
|
||
|
<!-- @todo The following focus() is not ajax/jscript friendly -->
|
||
|
<script type="text/javascript">document.getElementById('login-uid').focus();</script>
|