-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathuser_create_form.php
56 lines (44 loc) · 1.51 KB
/
user_create_form.php
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
<?php
require('checkallowed.php'); // No direct access
?>
<div class="infobox" style="display:none;"></div>
<div class="box">
<div class="box_title" id="box_servers_title"><?php echo $lang['add_user']; ?></div>
<div class="box_content" id="box_servers_content">
<table border="0" cellpadding="2" cellspacing="0" width="700" class="cfg_table" style="margin-top:20px;">
<tr>
<td width="150"><b><?php echo $lang['username']; ?>:</b></td>
<td><input type="text" value="" id="username" class="inputs" /></td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['newpassword']; ?>:</b></td>
<td><input type="password" value="" id="pass1" class="inputs" /></td>
</tr>
<tr>
<td width="150"><?php echo $lang['newpassword_conf']; ?>:</td>
<td><input type="password" value="" id="pass2" class="inputs" /></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['email_address']; ?>:</b></td>
<td><input type="text" value="" id="email" class="inputs" /></td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['first_name']; ?>:</b></td>
<td><input type="text" value="" id="fname" class="inputs" /></td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['last_name']; ?>:</b></td>
<td><input type="text" value="" id="lname" class="inputs" /></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
<div align="center">
<div class="button" onClick="javascript:user_create();"><?php echo $lang['save']; ?></div>
</div>
</div>
</div>