Code

Mass table tag fixing
[gosa.git] / 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;">
4    <input type=checkbox name="must_change_password" value="1" {$must_change_password} {$must_change_passwordACL}>
5    {t}User must change password on first login{/t}
6    <br>
7    <input type=checkbox name="use_shadowMin" value="1" {$use_shadowMin} {$shadowMinACL}>
8    {$shadowmins}
9    <br>
10    <input type=checkbox name="use_shadowMax" value="1" {$use_shadowMax} {$shadowMaxACL}>
11    {$shadowmaxs}
12    <br>
13   </td>
14   <td style="border-left:1px solid #A0A0A0">
15     &nbsp;
16   </td>
17   <td style="vertical-align:top">
18    <input type=checkbox name="use_shadowExpire" value="1" {$use_shadowExpire} {$shadowExpireACL}>
19    {t}Password expires on{/t}
20    <select name=day onChange="createResult(this.form,this.form.shadowExpire);" {$shadowExpireACL}>
21     {html_options values=$days output=$days selected=$day}
22    </select>
23    <select name=month onChange="populate(this.form,this.form.shadowExpire);" {$shadowExpireACL}>
24     {html_options options=$months selected=$month}
25    </select>
26    <select name=year onChange="populate(this.form,this.form.shadowExpire);" {$shadowExpireACL}>
27     {html_options values=$years output=$years selected=$year}
28    </select>
29    <input type="hidden" name="shadowExpire" value="{$shadowExpire}">
30    <br>
31    <input type=checkbox name="use_shadowInactive" value="1" {$use_shadowInactive} {$shadowInactiveACL}>
32    {$shadowinactives}
33    <br>
34    <input type=checkbox name="use_shadowWarning" value="1" {$use_shadowWarning} {$shadowWarningACL}>
35    {$shadowwarnings}
36   </td>
37  </tr>
38 </table>
40 <!-- Place cursor -->
41 <script language="JavaScript" type="text/javascript">
42   <!--
43   // Populate expiery dialog
44   populate(document.mainform,document.mainform.shadowExpire);
45   -->
46 </script>