Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views/agreementPanel.htm
<div ng-controller="agreementPanel" class="agreement" style="padding: 20px; ">
    <div class="license-logo"></div>
    <div class="row">
        <div class="col-xs-12 col-sm-12 col-md-12 col-lg-10 col-lg-offset-1">
            <div class="row">
                <div class="col-md-6 col-xs-12 col-sm-12">
                    <h1 style="font-size: 25px; text-align: center;">{{ lang.t("User Agreement") }}</h1>
                    <div style="text-align: start; white-space: pre-wrap; overflow-y: auto; height: 400px; border: 1px solid #ccc; border-radius: 5px; padding: 20px; background: #ffffff; font-size: 13px;">{{details.user_agreement}}</div>
                    <div class="pretty p-default p-curve p-smooth">
                        <input type="checkbox" id="user_agreement" ng-checked="approve.user_agreement == 1" ng-click="toggleUserAgreement()" value="1" />
                        <div class="state p-primary"><label for="user_agreement">{{ lang.t("I Agree to the User Agreement") }}</label></div>
                    </div>
                </div>
                <div class="col-md-6 col-xs-12 col-sm-12">
                    <h1 style="font-size: 25px; text-align: center;">{{ lang.t("Privacy Policy") }}</h1>
                    <div style="text-align: start; white-space: pre-wrap; overflow-y: auto; height: 400px; border: 1px solid #ccc; border-radius: 5px; padding: 20px; background: #ffffff; font-size: 13px;">{{details.privacy_policy}}</div>
                    <div class="pretty p-default p-curve p-smooth">
                        <input type="checkbox" id="privacy_policy" ng-checked="approve.privacy_policy == 1" ng-click="togglePrivacyPolicy()" value="1" />
                        <div class="state p-primary"><label for="privacy_policy">{{ lang.t("I Agree to the Privacy Policy") }}</label></div>
                    </div>
                </div>
            </div>
            <br>
            <button class="btn btn-primary" ng-click="continueToPanel()">{{ lang.t("Continue to Panel") }}</button>
        </div>
    </div>
</div>