copay/public/views/onboarding/disclaimer.html

22 lines
1.2 KiB
HTML
Raw Normal View History

2016-09-06 07:06:13 -07:00
<ion-view id="onboarding-disclaimer" class="onboarding">
2016-09-08 10:54:18 -07:00
<ion-content ng-controller="disclaimerController" ng-init=init()>
2016-09-06 07:06:13 -07:00
<div class="row text-center">
<h3 translate class="col-75 col">Almost done! Let's review</h3>
</div>
<div class="row text-center">
<p translate class="col col-75">
Bitcoin is different - it cannot be safely held with a bank or web service
</p>
</div>
2016-08-25 12:31:47 -07:00
<ion-list class="disclaimer">
2016-09-06 07:06:13 -07:00
<ion-checkbox ng-model="accept1"><span translate>I understand my funds are held securely on this device, not by a company.</span></ion-checkbox>
<ion-checkbox ng-model="accept2"><span translate>I understand if this wallet is lost or deleted, my bitcoin can only be recovered with the backup phrase.</span></ion-checkbox>
2016-08-25 12:31:47 -07:00
</ion-list>
2016-09-08 10:54:18 -07:00
<div id="agree-to-terms" ng-if="accept1 && accept2">
<ion-checkbox ng-model="terms.accept3"></ion-checkbox>
<p translate>I have read, understood, and agree with the <a ng-click="openTermsModal()" translate>Terms of use</a>.</p>
<button ng-disabled="!accept1 || !accept2 || !terms.accept3" class="button button-block button-positive" ng-click="confirm()" translate>Confirm & Finish</button>
2016-08-25 12:31:47 -07:00
</div>
</ion-content>
</ion-view>