-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathconfiguressl-steptwo.tpl
67 lines (62 loc) · 2.81 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
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
{if empty($approvalMethods)}
{assign var="approvalMethods" value=[]}
{/if}
{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 key='ssl.selectValidation'}}
<div class="margin-top margin-bottom">
{if empty($approvalMethods) || (!empty($approvalMethods) && in_array('email', $approvalMethods))}
<label class="form-check form-check-inline">
<input type="radio" class="icheck-button" name="approval_method" value="email" checked>
<strong class="name">{lang key='ssl.emailMethod'}</strong>
</label>
{/if}
{if in_array('dns-txt-token', $approvalMethods)}
<label class="form-check form-check-inline">
<input type="radio" class="icheck-button" name="approval_method" value="dns-txt-token">
<strong class="name">{lang key='ssl.dnsMethod'}</strong>
</label>
{/if}
{if in_array('file', $approvalMethods)}
<label class="form-check form-check-inline">
<input type="radio" class="icheck-button" name="approval_method" value="file">
<strong class="name">{lang key='ssl.fileMethod'}</strong>
</label>
{/if}
</div>
<div class="tab-content">
<div id="containerApprovalMethodEmail">
<div class="well">{lang key='ssl.emailMethodDescription'}</div>
<p>{lang key='ssl.selectEmail'}</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>
</div>
<div id="containerApprovalMethodDns" style="display: none;">
<div class="well">{lang key='ssl.dnsMethodDescription'}</div>
</div>
<div id="containerApprovalMethodFile" style="display: none;">
<div class="well">{lang key='ssl.fileMethodDescription'}</div>
</div>
</div>
<p class="text-center">
<input type="submit"
value="{$LANG.ordercontinuebutton}"
class="btn btn-primary"
id="btnOrderContinue"
/>
</p>
</form>