Code

0a36fbc1d88944cca50461b320b33befb3e37daa
[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="{t}Password input dialog{/t}" cellpadding=4 border=0>
12   <tr>
13     <td><b><LABEL for="new_password">{t}New password{/t}</LABEL></b></td>
14     <td>
15         {factory type='password' id='new_password' name='new_password' 
16             onfocus="nextfield='repeated_password';" onkeyup="testPasswordCss(\$('new_password').value);"}
17     </td>
18   </tr>
19   <tr>
20     <td><b><LABEL for="repeated_password">{t}Repeat new password{/t}</LABEL></b></td>
21     <td>
22         {factory type='password' id='repeated_password' name='repeated_password'
23             onfocus="nextfield='password_finish';"}
24     </td>
25   </tr>
26   <tr>
27     <td><b>{t}Strength{/t}</b></td>
28     <td>
29         <span id="meterEmpty" style="padding:0;margin:0;width:100%;background-color:#DC143C;display:block;height:5px;">
30         <span id="meterFull" style="padding:0;margin:0;z-index:100;width:0;background-color:#006400;display:block;height:5px;"></span></span>
31     </td>
32   </tr>
33 </table>
34 <br>
36 <hr>
37 <div class="plugin-actions">
38   <button type='submit' id='password_finish'name='password_finish'>{t}Set password{/t}</button>
39   <button type='submit' id='password_cancel'name='password_cancel'>{msgPool type=cancelButton}</button>
40 </div>
42 <input type='hidden' id='formSubmit'>
44 <!-- Place cursor -->
45 <script language="JavaScript" type="text/javascript">
46   <!-- // First input field on page
47         nextfield= "new_password";
48         focus_field('new_password');
49   -->
50 </script>