Code

Starting move
[gosa.git] / gosa-core / plugins / personal / posix / posix_shadow.tpl
1 <table summary="" style="width:100%; vertical-align:top; text-align:left;" cellpadding=0 border=0>
2  <tr>
3   <td style="width:50%; vertical-align:top;">
5 <!-- must_change_password  -->
6 {render acl=$mustchangepasswordACL}
7    <input type=checkbox name="mustchangepassword" value="1" {$mustchangepassword}>
8 {/render}
9    {t}User must change password on first login{/t}
10    <br>
12 <!-- shadowMin -->
13 {render acl=$shadowMinACL}
14    <input type=checkbox name="use_shadowMin" value="1" {$use_shadowMin}>
15 {/render}
16 {render acl=$shadowMinACL}
17    {$shadowmins}
18 {/render}
19    <br>
21 <!-- use_shadowMax -->
22 {render acl=$shadowMaxACL}
23    <input type=checkbox name="use_shadowMax" value="1" {$use_shadowMax}>
24 {/render}
25 {render acl=$shadowMaxACL}
26    {$shadowmaxs}
27 {/render}
28    <br>
30 <!-- use_shadowExpire -->
31 {render acl=$shadowExpireACL}
32    <input type=checkbox name="use_shadowExpire" value="1" {$use_shadowExpire}>
33 {/render}
34    {t}Password expires on{/t}
35 {render acl=$shadowExpireACL}
36    <select name=day onChange="createResult(this.form,this.form.shadowExpire);">
37     {html_options values=$days output=$days selected=$day}
38    </select>
39 {/render}
40 {render acl=$shadowExpireACL}
41    <select name=month onChange="populate(this.form,this.form.shadowExpire);">
42     {html_options options=$months selected=$month}
43    </select>
44 {/render}
45 {render acl=$shadowExpireACL}
46    <select name=year onChange="populate(this.form,this.form.shadowExpire);">
47     {html_options values=$years output=$years selected=$year}
48    </select>
49    <input type="hidden" name="shadowExpire" value="{$shadowExpire}">
50 {/render}
51    <br>
53 <!-- shadowInactive -->
54 {render acl=$shadowInactiveACL}
55    <input type=checkbox name="use_shadowInactive" value="1" {$use_shadowInactive}>
56 {/render}
57 {render acl=$shadowInactiveACL}
58    {$shadowinactives}
59 {/render}
60    <br>
62 <!-- use_shadowWarning -->
63 {render acl=$shadowWarningACL}
64    <input type=checkbox name="use_shadowWarning" value="1" {$use_shadowWarning}>
65 {/render}
66 {render acl=$shadowWarningACL}
67    {$shadowwarnings}
68 {/render}
69   </td>
70  </tr>
71 </table>
73 <!-- Place cursor -->
74 <script language="JavaScript" type="text/javascript">
75   <!--
76   // Populate expiery dialog
77   populate(document.mainform,document.mainform.shadowExpire);
78   -->
79 </script>