cis notified web server of a job completion; upload form interface and validation...
[living-lab-site.git] / application / views / user / recover_password_view.php
1 <?php echo form_open("user/recover_password") ?>
2 <table class="form">
3         <tr>
4                 <td></td>
5                 <td>
6                         <p><?php echo $this->lang->line('user_instruction_password_recovery'); ?></p>
7                 </td>
8         </tr>
9         <tr>
10                 <th><?php echo $this->lang->line('user_username'). ': ' ?></th>
11                 <td>
12                         <input type="text" name="username" size="24" value="<?php echo set_value('username') ?>" />
13                 </td>
14         </tr>
15         <tr>
16                 <td></td>
17                 <td><?php echo form_error('username') ?></td>
18         </tr>
19         <tr>
20                 <th><?php echo $this->lang->line('user_email'). ': ' ?></th>
21                 <td>
22                         <input type="text" name="email" size="24" value="<? echo set_value('email') ?>" />
23                 </td>
24         </tr>
25         <tr>
26                 <td></td>
27                 <td><?php echo form_error('email') ?></td>
28         </tr>
29         <tr>
30                 <td></td>
31                 <td>
32                         <input type="submit" value="<?php echo $this->lang->line('user_submit_password_recovery') ?>" />
33                 </td>
34         </tr>
35 </table>
36 </form>