Viewing File: /usr/local/cpanel/whostmgr/docroot/templates/gsw/initial_setup/views/legalView.ptt

<div class="legal-container">
    <cp-alert-list inline="true"></cp-alert-list>
    <p class="no-print">
        [% locale.maketext('To access [asis,cPanel amp() WHM], please agree to the following terms:') %]
    </p>
    <div class="panel panel-default">
        <div class="panel-body">
            <div id="table-of-contents" class="no-print">
                <h1>[% locale.maketext('Legal Documents') %]</h1>
                <ul>
                    <li ng-repeat="agreement in vm.agreements">
                        <label>{{ agreement.title }}</label>
                    </li>
                </ul>
            </div>
            <div ng-repeat="agreement in vm.agreements" class="agreement-content">
                <div ng-bind-html="agreement.content" id="{{ agreement.file }}"></div>
            </div>
        </div>
    </div>
</div>
<div class="footer text-center no-print">
    <a class="footer-option" href="/logout" id="cancel-legal-button">
        <i class="far fa-times-circle fa-3x" aria-hidden="true"></i>
        <span>[% locale.maketext('Cancel and Exit') %]</span>
    </a>
    <button class="footer-option" id="agree-to-legal-button" ng-click="vm.acceptAll()" ng-disabled="vm.isAccepting">
        <i class="far fa-arrow-alt-circle-right fa-3x" ng-show="!vm.isAccepting" aria-hidden="true"></i>
        <span class="fa-stack" ng-show="vm.isAccepting">
            <i class="fa-stack-2x far fa-circle" aria-hidden="true"></i>
            <i class="fa-stack-1x fas fa-sync-alt fa-spin" aria-hidden="true"></i>
        </span>
        <span>[% locale.maketext('Agree to All') %]</span>
    </button>
</div>
Back to Directory File Manager