AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / themes / default / password_reminder.tmpl.php
1 <?php 
2 /************************************************************************/
3 /* AContent                                                             */
4 /************************************************************************/
5 /* Copyright (c) 2010                                                   */
6 /* Inclusive Design Institute                                           */
7 /*                                                                      */
8 /* This program is free software. You can redistribute it and/or        */
9 /* modify it under the terms of the GNU General Public License          */
10 /* as published by the Free Software Foundation.                        */
11 /************************************************************************/
12
13 global $onload;
14 $onload = 'document.form.form_email.focus();';
15
16 require(TR_INCLUDE_PATH.'header.inc.php'); 
17 ?>
18
19 <div class="input-form">
20 <fieldset class="group_form"><legend class="group_form"><?php echo _AT('password_reminder'); ?></legend>
21
22         <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
23                 <input type="hidden" name="form_password_reminder" value="true" />
24
25                 <table class="form-data" align="center" width="60%">
26                         <tr>
27                                 <td colspan="2" align="left"><?php echo _AT('password_blurb'); ?></td>
28                         </tr>
29                         
30                         <tr><td><br /></td></tr>
31
32                         <tr>
33                                 <td align="left">
34                                         <span class="required" title="<?php echo _AT('required_field'); ?>">*</span>
35                                         <label for="email"><?php echo _AT('email_address'); ?></label>:
36                                 </td>
37                                 <td align="left">
38                                         <input type="text" name="form_email" id="email" size="60" />
39                                 </td>
40                         </tr>
41                 
42                         <tr>
43                                 <td colspan="2">
44                                         <p class="submit_button">
45                                                 <input type="submit" name="submit" value="<?php echo _AT('submit'); ?>" onclick="encrypt_password()" />
46                                                 <input type="submit" name="cancel" value=" <?php echo _AT('cancel'); ?> " />
47                                         </p>
48                                 </td>
49                         </tr>
50                 </table>
51         </form>
52
53 </fieldset>
54 </div>
55
56 <?php require(TR_INCLUDE_PATH.'footer.inc.php'); ?>