HEX
Server: LiteSpeed
System: Linux server44.twelveinks.com 5.14.0-570.12.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 13 06:11:55 EDT 2025 x86_64
User: moda (1338)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /python/moda/public_html/tech/old/templates/twenty-one/configuressl-steptwo.tpl
{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>