content_mailcnf_userlist_new.html
2.05 KB
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
58
59
60
61
62
63
64
65
66
<table border="0">
<form action="/mailcnf/user" method="POST">
<tr>
<th>Name</th>
<th>Wert</th>
</tr>
<tr>
<td>Group ID:</td>
<td>
{% if uid== 0 %}
<input type="text" size="70" name="group_id" value="{{ ugroup }}">
{% else %}
<input type="text" size="70" name="group_id" value="{{ ugroup }}" readonly>
{% end %}
</td>
</tr>
<tr>
<td>Quota:</td>
<td>
{% if uid== 0 %}
<input type="text" size="70" name="quota" value="0">
{% else %}
<input type="text" size="70" name="quota" value="0" readonly>
{% end %}
</td>
</tr>
<tr>
<td>Email: </td>
<td><input type="text" size="40" name="email" value="">@
<select name="domaintld" size="1">
{% for entry in combolist %}
<option>{{ escape(entry) }}</option>
{% end %}
</select>
<!--<input type="text" size="30" name="domaintld" value="">-->
</tr>
<tr>
<td>Sent Mail:</td>
<td><input type="checkbox" size="40" name="sent_mail" value="1" checked></td>
</tr>
<tr>
<td>Aktiv: </td>
<td><input type="checkbox" size="40" name="active" value="1" checked></td>
</tr>
<tr>
<td>Neues Passwort:</td>
<td><input type="password" size="70" name="pw1" value=""></td>
</tr>
<tr>
'<td>Neues Passwort 2:</td>
<td><input type="password" size="70" name="pw2" value=""></td>
</tr>
<input type="hidden" size="70" name="fnc" value="submitnewuser">
<input type="hidden" value="userlist" size="70" name="mainfnc" id="" class="'">
<input type="hidden" value="mailcnf" size="70" name="module" id="" class="'">
<button type="submit" class="btn btn-info btn-block btn-xs">Sende</button>
<tr>
</form>