Code

de958ab2d25e2a534534ffd307d2c0a251a50255
[gosa.git] / plugins / personal / password / password.tpl
1 <div class="plugtop">
2   <img alt="" src="{$headimage}" align=middle>{t}Change password{/t}
3 </div>
5 <p>
6   {t}To change your personal password use the fields below. The changes take effect immediately. Please memorize the new password, because you wouldn't be able to login without it.{/t}
7 </p>
9 <p>
10   {t}Changing the password affects your authentification on mail, proxy, samba and unix services.{/t}
11 </p>
13 <table style="vertical-align:top; text-align:left;" cellpadding=4 border=0>
14   <tr>
15     <td><b>{t}Current password{/t}</b></td>
16     <td><input type="password" name="current_password" size="30" maxlength="40"
17                 onFocus="nextfield= 'new_password';"></td>
18   </tr>
19   <tr>
20     <td><b>{t}New password{/t}</b></td>
21     <td><input type="password" name="new_password" size="30" maxlength="40"
22                 onFocus="nextfield= 'repeated_password';"></td>
23   </tr>
24   <tr>
25     <td><b>{t}Repeat new password{/t}</b></td>
26     <td><input type="password" name="repeated_password" size="30" maxlength="40"
27                 onFocus="nextfield= 'password_finish';"></td>
28   </tr>
29 </table>
31 <br>
33 <p class="plugbottom">
34   <input type=submit name="password_finish" value="{t}Set password{/t}">
35   &nbsp;
36   <input type=reset name="password_cancel" value="{t}Clear fields{/t}">
37 </p>
39 <input type="hidden" name="ignore">
41 <!-- Place cursor -->
42 <script language="JavaScript" type="text/javascript">
43   <!-- // First input field on page
44   nextfield= 'current_password';
45   document.mainform.current_password.focus();
46   -->
47 </script>