copay/public/views/disclaimer.html

22 lines
737 B
HTML
Raw Normal View History

2016-08-17 11:23:17 -07:00
<ion-view>
<ion-content class="padding" ng-controller="disclaimerController" ng-init="init()">
<h1 translate>WELCOME TO COPAY</h1>
<h3 translate>A multisignature bitcoin wallet</h3>
2015-11-17 08:36:31 -08:00
2016-08-17 11:23:17 -07:00
<h4 translate>Terms of Use</h4>
<p ng-include="'views/includes/terms.html'"></p>
2015-12-04 13:45:35 -08:00
2016-08-17 11:23:17 -07:00
<div class="padding-vertical" ng-show="lang != 'en'">
<a ng-click="$root.openExternalLink('https://copay.io/disclaimer')" translate>Official English Disclaimer</a>
</div>
<p translate>I affirm that I have read, understood, and agree with these terms.</p>
<button ng-click="accept()" class="button button-block button-positive" translate>
2015-12-04 13:45:35 -08:00
I AGREE. GET STARTED
</button>
2016-08-17 11:23:17 -07:00
</ion-content>
</ion-view>