Wallet/www/views/modals/terms.html

19 lines
1,022 B
HTML
Raw Normal View History

2016-09-08 14:54:18 -03:00
<ion-modal-view id="terms-of-use">
<ion-nav-bar class="bar-ligt">
2016-08-30 16:09:39 -03:00
<ion-nav-title>{{'Terms of Use' | translate}}</ion-nav-title>
2016-08-25 16:31:47 -03:00
<ion-nav-buttons side="primary">
2016-09-08 14:54:18 -03:00
<button class="button no-border" ng-click="termsModal.hide()">
<i class="ion-ios-arrow-thin-left"></i>
2016-08-25 16:31:47 -03:00
</button>
</ion-nav-buttons>
</ion-nav-bar>
2016-09-14 18:04:44 -03:00
<ion-content class="has-header" scroll="false">
<ion-scroll ng-include="'views/includes/terms.html'" direction="y" ng-style="{'height': '60%'}"></ion-scroll>
2016-09-06 10:43:54 -04:00
<div id="agree-to-terms">
2016-09-14 18:04:44 -03:00
<a ng-click="openExternalLink('https://copay.io/disclaimer')" ng-show="lang != 'en'" translate>Official English Disclaimer</a>
2016-09-08 14:54:18 -03:00
<ion-checkbox ng-model="terms.accept3"></ion-checkbox>
2016-09-14 18:04:44 -03:00
<p translate>I have read, understood, and agree with the Terms of use.</p>
2016-09-08 14:54:18 -03:00
<button ng-disabled="!terms.accept3" class="button button-block button-positive" ng-click="termsModal.hide(); confirm()" translate>Confirm & Finish</button>
2016-09-06 10:43:54 -04:00
</div>
2016-08-25 16:31:47 -03:00
</ion-content>
2016-09-08 14:54:18 -03:00
</ion-modal-view>