Wallet/www/views/import.html

28 lines
1.2 KiB
HTML
Raw Normal View History

<ion-view id="import" class="settings" show-tabs>
2016-09-06 15:11:02 -03:00
<ion-nav-bar class="bar-royal">
<ion-nav-title>{{'Import Wallet' | translate}}</ion-nav-title>
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
2016-08-16 17:45:20 -03:00
2017-01-04 20:43:04 -03:00
<ion-content ng-init="phrase = true">
2016-10-13 11:45:45 -03:00
<div class="row text-center top-tabs">
2017-01-06 19:03:09 -03:00
<div class="col" ng-click="phrase = true; file = hardware = false" ng-style="phrase &&
2016-10-13 11:45:45 -03:00
{'border-bottom-style': 'solid'}">
2016-09-06 15:11:02 -03:00
<span translate>Recovery phrase</span>
</div>
2017-01-06 19:03:09 -03:00
<div class="col" ng-click="file = true; phrase = hardware = false" ng-style="file &&
2016-10-13 11:45:45 -03:00
{'border-bottom-style': 'solid'}">
2016-09-06 15:11:02 -03:00
<span translate>File/Text</span>
</div>
2017-01-06 19:03:09 -03:00
<div class="col" ng-click="hardware = true; phrase = file = false" ng-style="hardware &&
2017-04-17 10:55:16 -04:00
{'border-bottom-style': 'solid'}" ng-show="isCopay && (supportsLedger || supportsTrezor)">
2016-09-06 15:11:02 -03:00
<span translate>Hardware wallet</span>
</div>
</div>
2016-08-16 17:45:20 -03:00
2016-09-06 15:11:02 -03:00
<div ng-include="'views/tab-import-phrase.html'" ng-if="phrase"></div>
<div ng-include="'views/tab-import-file.html'" ng-if="file"></div>
<div ng-include="'views/tab-import-hardware.html'" ng-if="hardware"></div>
</ion-content>
</ion-view>