Code

Removed password length restriction
[gosa.git] / gosa-plugins / systems / admin / systems / password.tpl
1 <script type="text/javascript" src="include/pwdStrength.js"></script>
2 <p>
3  {t}To change the terminal root password use the fields below. The changes take effect during the next reboot. Please memorize the new password, because you wouldn't be able to log in.{/t}
4 </p>
5 <p>
6  <b>{t}Leave fields blank for password inheritance from default entries.{/t}</b>
7 </p>
9 <p>
10  {t}Changing the password impinges on authentification only.{/t}
11 </p>
13 <table summary="" style="vertical-align:top; text-align:left;" cellpadding=4 border=0>
14   <tr>
15     <td><b><LABEL for="new_password">{t}New password{/t}</LABEL></b></td>
16     <td><input id="new_password" type="password" name="new_password" size="30"
17                 onkeyup="testPasswordCss(document.getElementById('new_password').value);"
18                 onFocus="nextfield= 'repeated_password';"></td>
19   </tr>
20   <tr>
21     <td><b><LABEL for="repeated_password">{t}Repeat new password{/t}</LABEL></b></td>
22     <td><input type="password" id="repeated_password" name="repeated_password" size="30"
23                 onFocus="nextfield= 'password_finish';"></td>
24   </tr>
25   <tr>
26        <td>{t}Password strength{/t}</td>
27        <td>
28         <span id="meterEmpty" style="padding:0;margin:0;width:100%;background-color:#DC143C;display:block;height:5px;">
29         <span id="meterFull" style="padding:0;margin:0;z-index:100;width:0;background-color:#006400;display:block;height:5px;"></span></span>
30        </td>
31       </tr>
32  
33 </table>
35 <br>
37 <p class="plugbottom">
38   <input type=submit name="password_finish" value="{t}Set password{/t}">
39   &nbsp;
40   <input type=submit name="password_cancel" value="{msgPool type=cancelButton}">
41 </p>
43 <!-- Place cursor -->
44 <script language="JavaScript" type="text/javascript">   
45   <!-- // First input field on page
46         nextfield= 'new_password';
47         focus_field('new_password');
48   -->
49 </script>