copay/www/views/import.html

29 lines
1.3 KiB
HTML
Raw Normal View History

2016-10-13 07:45:45 -07:00
<ion-view id="import" ng-controller="tabsController" ng-init="importInit()" class="settings">
2016-09-06 11:11:02 -07: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 13:45:20 -07:00
2016-09-06 12:40:57 -07:00
<ion-content ng-controller="importController" ng-init="phrase = true; init()">
2016-10-13 07:45:45 -07:00
<div class="row text-center top-tabs">
<div class="col" ng-click="phrase = true; file = hardware = false; showAdv = false" ng-style="phrase &&
{'border-bottom-style': 'solid'}">
2016-09-06 11:11:02 -07:00
<span translate>Recovery phrase</span>
</div>
2016-10-13 07:45:45 -07:00
<div class="col" ng-click="file = true; phrase = hardware = false; showAdv = false" ng-style="file &&
{'border-bottom-style': 'solid'}">
2016-09-06 11:11:02 -07:00
<span translate>File/Text</span>
</div>
2016-10-13 07:45:45 -07:00
<div class="col" ng-click="hardware = true; phrase = file = false; showAdv = false" ng-style="hardware &&
{'border-bottom-style': 'solid'}">
2016-09-06 11:11:02 -07:00
<span translate>Hardware wallet</span>
</div>
</div>
2016-08-16 13:45:20 -07:00
2016-09-06 11:11:02 -07: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>