-
Côme Chilliet authored
issue #6187
Unverified9fb6ce7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<div>
<div class="default">
<h2>{t}Create a new FusionDirectory administrator account{/t}</h2>
<p>
{t}This dialog will automatically add a new super administrator to your LDAP tree.{/t}
</p>
<table>
<tr>
<td>
{t}Name{/t}:
</td>
<td>
<i>System administrator</i>
</td>
</tr>
<tr>
<td>
{t}User ID{/t}:
</td>
<td>
<input type='text' value='{$infos.uid}' name='uid'><br>
</td>
</tr>
<tr>
<td>
{t}Password{/t}:
</td>
<td>
<input type='password' value='{$infos.password}' name='userPassword_password'><br>
</td>
</tr>
<tr>
<td>
{t}Password (again){/t}:
</td>
<td>
<input type='password' value='{$infos.password2}' name='userPassword_password2'><br>
</td>
</tr>
</table>
<!-- Place cursor -->
<script>
<!-- // First input field on page
focus_field('new_user_password');
-->
</script>
<hr/>
<div style='width:99%; text-align:right; padding:5px;'>
<input type='submit' name='dialog_confirm' value='{t}Apply{/t}'/>
<input type='submit' formnovalidate="formnovalidate" name='dialog_cancel' value='{t}Cancel{/t}'/>
</div>
</div>
</div>