Viewing File: /usr/local/cpanel/whostmgr/docroot/cgi/ncssl/source/templates/issue.html.twig

{% extends 'base.html.twig' %}
{% block body %}
    <div id="ncssl">
        <div class="body">
            {% block navbar %}
                {{ include('navbar.html.twig') }}
            {% endblock %}
            <div class="body-container">
                <div class="card my-3">
                    <div class="card-body">
                        <div class="logo me-4">
                            <img src="static/img/comodo-logo.png" alt="Comodo">
                        </div>
                        <div class="description">
                            <h3>
                                {{ productManager.getNameByType(product_data.type) }}
                                {% if product_data.status is same as('NEWRENEWAL') and product_data.common_name %}
                                    <small>@ {{ product_data.common_name }}</small>
                                {% endif %}
                            </h3>
                            <span>ID {{ product_data.nc_id }}</span>
                            <span class="inline-separator">|</span>
                            <span>Valid for {{ product_data.years > 1 ? product_data.years ~ ' yrs' : '1 yr' }}</span>
                            <span class="inline-separator">|</span>
                            <a href="{{ page.backLink }}">Cancel installation</a>
                        </div>
                    </div>
                </div>
            </div>
            <div class="body-container">
                {% if errors|length == 0 %}
                    {{ include('issue-form.html.twig', { actionUrl }) }}
                {% else %}
                    {% for error in errors %}
                        {% if error is same as('quickssl_premium_sans') %}
                            <div class="callout callout-danger">
                                <h4>SSL can&rsquo;t be installed via plugin in current configuration</h4></h4>
                                <p>You&rsquo;ve purchased QuickSSL Premium as multi-domain certificate. &ldquo;Namecheap SSL&rdquo; plugin doesn&rsquo;t support multi-domain certificates just yet.</p>
                                <p>Please <a href="{{ supportLink }}" target="_blank" class="btn-link">contact support</a>, if you have any questions or need assistance with installation.</p>
                            </div>
                        {% else %}
                            {{ error }}
                        {% endif %}
                    {% endfor %}
                {% endif %}
            </div>
        </div>

        {% block modals %}
            {{ include('modals.html.twig') }}
        {% endblock %}
    </div>
{% endblock %}
Back to Directory File Manager