-
Notifications
You must be signed in to change notification settings - Fork 56
/
clientareadomainemailforwarding.tpl
67 lines (59 loc) · 1.88 KB
/
clientareadomainemailforwarding.tpl
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
67
<div class="page-header">
<h1>{$LANG.domainemailforwarding} {$domain}</h1>
</div>
{if $error}
<div class="alert alert-error fade in">
<button class="close" data-dismiss="alert">×</button>
{$error}
</div>
{/if}
<p>{$LANG.domainemailforwardingdesc}</p>
{if $external}
<div class="textcenter">{$code}</div>
{else}
<form method="post" action="clientarea.php">
<input type="hidden" name="action" value="domainemailforwarding">
<input type="hidden" name="sub" value="save">
<input type="hidden" name="domainid" value="{$domainid}">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>{$LANG.domainemailforwardingprefix}</th>
<th>{$LANG.domainemailforwardingforwardto}</th>
</tr>
</thead>
<tbody>
{foreach key=num item=emailforwarder from=$emailforwarders}
<tr>
<td>
<div class="input-append">
<input type="text" name="emailforwarderprefix[{$num}]" value="{$emailforwarder.prefix}" class="span3"><span class="add-on">@{$domain}</span>
</div>
</td>
<td><input type="text" name="emailforwarderforwardto[{$num}]" value="{$emailforwarder.forwardto}" class="span4"></td>
</tr>
{/foreach}
<tr>
<td>
<div class="input-append">
<input type="text" name="emailforwarderprefixnew" class="span3"><span class="add-on">@{$domain}</span>
</div>
</td>
<td><input type="text" name="emailforwarderforwardtonew" class="span4"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3" class="textright">
<input type="submit" value="{$LANG.clientareasavechanges}" onclick="$('#modalpleasewait').modal();" class="btn btn-primary btn-large">
</td>
</tr>
</tfoot>
</table>
</form>
<div class="modal hide fade in" id="modalpleasewait">
<div class="modal-header textcenter">
<h3><img src="images/loadingsml.gif" alt="{$LANG.pleasewait}" class="valignbaseline"> {$LANG.pleasewait}</h3>
</div>
</div>
{/if}