-
Notifications
You must be signed in to change notification settings - Fork 41
/
configuressl-steptwo.tpl
68 lines (63 loc) · 3.3 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}
<div class="card">
<div class="card-body">
{if $errormessage}
{include file="$template/includes/alert.tpl" type="error" errorshtml=$errormessage}
{/if}
<form method="post" action="{$smarty.server.PHP_SELF}?cert={$cert}&step=3">
<h2 class="card-title">{lang key='ssl.selectValidation'}</h2>
{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 class="tab-content pt-3">
<div id="containerApprovalMethodEmail">
{include file="$template/includes/alert.tpl" type="secondary" msg={lang key='ssl.emailMethodDescription'}}
<p>{lang key='ssl.selectEmail'}</p>
<div class="row pt-2">
<div class="col-sm-10 offset-sm-1">
<div class="list-group">
{foreach $approveremails as $num => $approveremail}
<div class="list-group-item">
<label class="mb-0">
<input type="radio" name="approveremail"
value="{$approveremail}"{if $num eq 0} checked{/if}>
{$approveremail}
</label>
</div>
{/foreach}
</div>
</div>
</div>
</div>
<div id="containerApprovalMethodDns" class="w-hidden">
{include file="$template/includes/alert.tpl" type="secondary" msg={lang key='ssl.dnsMethodDescription'}}
</div>
<div id="containerApprovalMethodFile" class="w-hidden">
{include file="$template/includes/alert.tpl" type="secondary" msg={lang key='ssl.fileMethodDescription'}}
</div>
</div>
<div class="text-center pt-3">
<button type="submit" class="btn btn-primary" id="btnOrderContinue">
{lang key='ordercontinuebutton'}
</button>
</div>
</form>
</div>
</div>