forked from Abulhallaj/whmcs-template-six-rtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuressl-steptwo.tpl
30 lines (24 loc) · 1.02 KB
/
configuressl-steptwo.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
{if $errormessage}
{include file="$template/includes/alert.tpl" type="error" errorshtml=$errormessage}
{/if}
<form class="form-horizontal" method="post" action="{$smarty.server.PHP_SELF}?cert={$cert}&step=3">
{include file="$template/includes/subheader.tpl" title=$LANG.sslcertapproveremail}
<p>{$LANG.sslcertapproveremaildetails}</p>
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="form-group">
{foreach from=$approveremails item=approveremail key=num}
<div class="radio">
<label>
<input type="radio" name="approveremail" value="{$approveremail}"{if $num eq 0} checked{/if}>
{$approveremail}
</label>
</div>
{/foreach}
</div>
</div>
</div>
<p class="text-center">
<input type="submit" value="{$LANG.ordercontinuebutton}" class="btn btn-primary" />
</p>
</form>