Code

Mass table tag fixing
[gosa.git] / plugins / admin / users / template.tpl
1 <div style="font-size:18px;">
2   {t}Creating a new user using templates{/t}
3 </div>
5 <p>
6   {t}Creating a new user can be assisted by using templates. Many database records will be filled automatically. Choose <b>none</b> to skip the usage of templates.{/t}
7 </p>
9 <table summary="" style="vertical-align:top; text-align:left;" cellpadding=4 border=0>
10   <tr>
11     <td><b>{t}Template{/t}</b></td>
12     <td>
13       <select size="1" name="template">
14        {html_options options=$templates selected=$template}
15       </select>
16     </td>
17   </tr>
18   <tr>
19     <td><b>{t}Name{/t}</b></td>
20     <td><input name="sn" size="30" maxlength="40" value="{$sn}"></td>
21   </tr>
22   <tr>
23     <td><b>{t}Given name{/t}</b></td>
24     <td><input name="givenName" size="30" maxlength="40" value="{$givenName}"></td>
25   </tr>
26   {if $got_uid eq "true"}
27   <tr>
28     <td><b>{t}Login{/t}</b></td>
29     <td>
30       {if $edit_uid eq "false"}
31       <select size="1" name="uid">
32         {html_options output=$uids values=$uids selected=$uid}
33       </select>
34       {else}
35       <input name="uid" size="30" maxlength="40" value="{$uid}">
36       {/if}
37     </td>
38   </tr>
39   {/if}
40 </table>
42 <br>
43 <p class="plugbottom">
44   <input type=submit name="template_continue" value="{t}Continue{/t}">
45   &nbsp;
46   <input type=submit name="edit_cancel" value="{t}Cancel{/t}">
47 </p>
51 <!-- Place cursor -->
52 <script language="JavaScript" type="text/javascript">
53   <!-- // First input field on page
54   document.mainform.sn.focus();
55   -->
56 </script>