copay/public/views/preferencesDeleteWallet.html

19 lines
845 B
HTML
Raw Normal View History

2016-08-17 09:07:48 -07:00
<ion-view>
2016-08-16 12:47:51 -07:00
<ion-nav-bar class="bar-stable">
<ion-nav-title>Delete Wallet</ion-nav-title>
<ion-nav-buttons side="primary">
2016-08-19 07:32:26 -07:00
<button class="button no-border" ui-sref="wallet.preferencesAdvanced">
<i class="icon ion-chevron-left"></i> Back
</button>
</ion-nav-buttons>
2016-08-16 12:47:51 -07:00
</ion-nav-bar>
2016-08-17 09:07:48 -07:00
<ion-content class="has-header" ng-controller="preferencesDeleteWalletController" cache-view="false">
2016-08-16 12:47:51 -07:00
<div translate>Warning!</div>
<div translate>Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED</div>
2016-08-19 08:50:52 -07:00
<div class="right" ng-style="{'color':backgroundColor}" ng-show="!isDeletingWallet">
<span ng-show="alias">{{alias}}</span>{{walletName}}
2016-08-16 12:47:51 -07:00
</div>
2016-08-19 08:50:52 -07:00
<button class="button button-block button-stable" ng-click="showDeletePopup()"translate>Delete wallet</button>
2016-08-16 12:47:51 -07:00
</ion-content>
</ion-view>