2016-08-17 13:07:48 -03:00
|
|
|
<ion-view>
|
2016-08-31 18:02:15 -04:00
|
|
|
<ion-nav-bar class="bar-royal">
|
2016-08-30 12:52:28 -03:00
|
|
|
<ion-nav-title>{{'Receive' | translate}}</ion-nav-title>
|
2016-08-17 13:17:23 -03:00
|
|
|
</ion-nav-bar>
|
|
|
|
|
|
2016-08-24 13:01:30 -03:00
|
|
|
<ion-content ng-controller="tabReceiveController" ng-init="init()">
|
2016-08-30 15:43:17 -03:00
|
|
|
<div class="m30v text-center" copy-to-clipboard="addr">
|
|
|
|
|
<qrcode size="220" data="bitcoin:{{addr}}"></qrcode>
|
2016-08-30 18:59:29 -03:00
|
|
|
<div ng-if="wallet.needsBackup" class="assertive" translate>
|
|
|
|
|
Before receiving funds, you must backup your wallet. If this device is lost, it is impossible to access your funds without a backup.
|
|
|
|
|
</div>
|
2016-08-15 11:56:59 -03:00
|
|
|
</div>
|
|
|
|
|
|
2016-08-25 16:34:47 -03:00
|
|
|
<div class="list card padding text-center" ng-if="!wallets[0]">
|
|
|
|
|
<span translate>No Wallet</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="list" ng-if="wallets[0]">
|
2016-08-30 15:43:17 -03:00
|
|
|
<div class="item item-icon-left" ng-click="shareAddress(addr)" ng-show="isCordova && addr">
|
2016-08-15 11:56:59 -03:00
|
|
|
<i class="icon ion-ios-upload-outline"></i>
|
|
|
|
|
<span translate>Share address</span>
|
|
|
|
|
</div>
|
2016-08-30 15:43:17 -03:00
|
|
|
<div class="item item-icon-left" ng-click="setAddress(null, true)">
|
2016-08-15 11:56:59 -03:00
|
|
|
<i class="icon ion-ios-loop"></i>
|
|
|
|
|
<span translate>Next Address</span>
|
|
|
|
|
</div>
|
2016-08-30 17:07:49 -03:00
|
|
|
<div class="item item-icon-left">
|
2016-08-15 11:56:59 -03:00
|
|
|
<i class="icon ion-social-bitcoin-outline"></i>
|
2016-08-30 15:43:17 -03:00
|
|
|
<span ng-if="generatingAddress">...</span>
|
|
|
|
|
<span ng-if="!generatingAddress" copy-to-clipboard="addr">{{addr}}</span>
|
2016-08-15 11:56:59 -03:00
|
|
|
</div>
|
2016-08-24 19:32:49 -03:00
|
|
|
|
|
|
|
|
<wallets ng-if="wallets[0]" wallets="wallets"></wallets>
|
2016-08-12 16:04:17 -03:00
|
|
|
</div>
|
2016-08-11 17:38:27 -03:00
|
|
|
</ion-content>
|
2016-08-12 16:04:17 -03:00
|
|
|
</ion-view>
|