forked from osiloke/template-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbulkdomainmanagementreglock.tpl
41 lines (37 loc) · 1.34 KB
/
bulkdomainmanagementreglock.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
<div class="page-header">
<h1>{$LANG.domainreglockstatus}</h1>
</div>
{if $save}
{if $errors}
<div class="alert alert-error fade in">
<button class="close" data-dismiss="alert">×</button>
<h4 class="alert-heading">{$LANG.clientareaerrors}</h4>
<ul>
{foreach from=$errors item=error}
<li>{$error}</li>
{/foreach}
</ul>
</div>
{else}
<div class="alert alert-success fade in">
<button class="close" data-dismiss="alert">×</button>
{$LANG.changessavedsuccessfully}
</div>
{/if}
{/if}
<p>{$LANG.domainreglockinfo}</p>
<div class="alert">
<h3 class="alert-heading">{$LANG.domainbulkmanagementchangeaffect}</h3>
{foreach from=$domains item=domain name=domains}{$domain}{if !$smarty.foreach.domains.last}, {/if}{/foreach}
</div>
<form method="post" action="clientarea.php" class="well text-center">
<input type="hidden" name="action" value="bulkdomain">
<input type="hidden" name="update" value="reglock">
<input type="hidden" name="save" value="1">
{foreach from=$domainids item=domainid}
<input type="hidden" name="domids[]" value="{$domainid}">
{/foreach}
<h4 class="marginbottom">{$LANG.domainreglockrecommend}</h4>
<input type="submit" name="enable" value="{$LANG.domainreglockenable}" class="btn btn-success btn-large">
<input type="submit" name="disable" value="{$LANG.domainreglockdisable}" class="btn btn-danger btn-large">
</form>