Code

Updated password handling for multiple users.-
[gosa.git] / gosa-core / plugins / admin / users / password.tpl
1 <script type="text/javascript" src="include/pwdStrength.js"></script>
3 <p>
4  {t}To change the user password use the fields below. The changes take effect immediately. Please memorize the new password, because the user wouldn't be able to login without it.{/t}
5 </p>
7 <p>
8  {t}Changing the password affects your authentification on mail, proxy, samba and unix services.{/t}
9 </p>
11 <table summary="" style="vertical-align:top; text-align:left;" cellpadding=4 border=0>
12   <tr>
13     <td><b><LABEL for="new_password">{t}New password{/t}</LABEL></b></td>
14     <td><input type="password" id="new_password" name="new_password" size="30" maxlength="40" onFocus="nextfield= 'repeated_password';" onkeyup="testPasswordCss(document.getElementById('new_password').value);"></td>
15   </tr>
16   <tr>
17     <td><b><LABEL for="repeated_password">{t}Repeat new password{/t}</LABEL></b></td>
18     <td><input type="password" id="repeated_password" name="repeated_password" size="30" maxlength="40" onFocus="nextfiled= 'password_finish'"></td>
19   </tr>
20   <tr>
21     <td><b>{t}Strength{/t}</b></td>
22     <td>
23         <span id="meterEmpty" style="padding:0;margin:0;width:100%;background-color:#DC143C;display:block;height:5px;">
24         <span id="meterFull" style="padding:0;margin:0;z-index:100;width:0;background-color:#006400;display:block;height:5px;"></span></span>
25     </td>
26   </tr>
27 </table>
28 <br>
29 <p class="plugbottom">
30   <input type=submit name="password_finish" value="{t}Set password{/t}">
31   &nbsp;
32   <input type=submit name="password_cancel" value="{msgPool type=cancelButton}">
33   <input type='hidden' id='formSubmit'>
34 </p>
36 <!-- Place cursor -->
37 <script language="JavaScript" type="text/javascript">
38   <!-- // First input field on page
39         nextfield= "new_password";
40         focus_field('new_password');
41   -->
42 </script>