Code

Fixed printf , parameter was missing,
[gosa.git] / plugins / personal / password / password_expired.tpl
1 <div class="plugtop">
2   <img alt="" src="{$headimage}" align=middle>{t}Change password{/t}
3 </div>
5 <p>
6   {t}Your password has expired. 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 summary="" style="vertical-align:top; text-align:left;" cellpadding=4 border=0>
14   <tr>
15     <td><b><LABEL for="current_password">{t}Current password{/t}</LABEL></b></td>
16     <td><input id="current_password" type="password" name="current_password" size="30" maxlength="40"
17                 onFocus="nextfield= 'new_password';"></td>
18   </tr>
19   <tr>
20     <td><b><LABEL for="new_password">{t}New password{/t}</LABEL></b></td>
21     <td><input id="new_password" type="password" name="new_password" size="30" maxlength="40"
22                 onFocus="nextfield= 'repeated_password';"></td>
23   </tr>
24   <tr>
25     <td><b><LABEL for="repeated_password">{t}Repeat new password{/t}</LABEL></b></td>
26     <td><input id="repeated_password" 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 id="password_cancel" 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>