2016-09-01 12:36:59 -04:00
|
|
|
<ion-view>
|
|
|
|
|
<ion-nav-bar class="bar-royal">
|
2016-09-01 12:46:25 -04:00
|
|
|
<ion-nav-title>{{'Export Wallet' | translate}}</ion-nav-title>
|
2016-09-01 12:36:59 -04:00
|
|
|
<ion-nav-buttons side="primary">
|
2016-09-01 12:46:25 -04:00
|
|
|
<button class="button back-button" ui-sref="tabs.preferences.preferencesAdvanced">
|
|
|
|
|
<i class="icon ion-ios-arrow-thin-left"></i>
|
|
|
|
|
</button>
|
2016-09-01 12:36:59 -04:00
|
|
|
</ion-nav-buttons>
|
|
|
|
|
</ion-nav-bar>
|
2016-08-19 16:16:24 -03:00
|
|
|
|
2016-09-01 09:53:17 -03:00
|
|
|
<ion-content ng-controller="exportController" ng-init="init()">
|
2016-08-19 16:16:24 -03:00
|
|
|
|
2016-09-01 12:46:25 -04:00
|
|
|
<div class="m20t text-gray" ng-show="supported">
|
|
|
|
|
<div class="text-center m20b">
|
|
|
|
|
<qrcode size="220" version="8" error-correction-level="M" data="{{exportWalletInfo}}"></qrcode>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text-center size-12 m10" translate>From the destination device, go to Add wallet > Import wallet and scan this QR code</div>
|
2016-08-19 16:16:24 -03:00
|
|
|
</div>
|
|
|
|
|
|
2016-09-01 12:46:25 -04:00
|
|
|
<div class="m20t text-gray" ng-show="!supported">
|
|
|
|
|
<div class="text-center size-12 m10" translate>Exporting via QR not supported for this wallet</div>
|
|
|
|
|
</div>
|
2016-08-19 16:16:24 -03:00
|
|
|
|
2016-09-01 09:53:17 -03:00
|
|
|
</ion-content>
|
|
|
|
|
</ion-view>
|