forked from osiloke/template-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bulkdomainmanagementautorenew.tpl
29 lines (25 loc) · 1.09 KB
/
bulkdomainmanagementautorenew.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
<div class="page-header">
<h1>{$LANG.domainautorenewstatus}</h1>
</div>
{if $save}
<div class="alert alert-success fade in">
<button class="close" data-dismiss="alert">×</button>
{$LANG.changessavedsuccessfully}
</div>
{/if}
<p>{$LANG.domainautorenewinfo}</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="autorenew">
<input type="hidden" name="save" value="1">
{foreach from=$domainids item=domainid}
<input type="hidden" name="domids[]" value="{$domainid}">
{/foreach}
<h4 class="marginbottom">{$LANG.domainautorenewrecommend}</h4>
<input type="submit" name="enable" value="{$LANG.domainsautorenewenable}" class="btn btn-success btn-large">
<input type="submit" name="disable" value="{$LANG.domainsautorenewdisable}" class="btn btn-danger btn-large">
</form>