Code

Mass table tag fixing
[gosa.git] / plugins / admin / systems / password.tpl
1 <p>
2  {t}To change the terminal root password use the fields below. The changes take effect during next reboot. Please memorize the new password, because the you would't be able to log in. <b>Leave fields blank for password inheritance from default entries.</b>{/t}
3 </p>
5 <p>
6  {t}Changing the password impinges on authentification only.{/t}
7 </p>
9 <table summary="" style="vertical-align:top; text-align:left;" cellpadding=4 border=0>
10   <tr>
11     <td><b>{t}New password{/t}</b></td>
12     <td><input type="password" name="new_password" size="30" maxlength="40"
13                 onFocus="nextfield= 'repeated_password';"></td>
14   </tr>
15   <tr>
16     <td><b>{t}Repeat new password{/t}</b></td>
17     <td><input type="password" name="repeated_password" size="30" maxlength="40"
18                 onFocus="nextfield= 'password_finish';"></td>
19   </tr>
20 </table>
22 <br>
24 <p class="plugbottom">
25   <input type=submit name="password_finish" value="{t}Set password{/t}">
26   &nbsp;
27   <input type=submit name="password_cancel" value="{t}Cancel{/t}">
28 </p>
30 <!-- Place cursor -->
31 <script language="JavaScript" type="text/javascript">
32   <!-- // First input field on page
33   nextfield= 'new_password';
34   document.mainform.new_password.focus();
35   -->
36 </script>