Wallet/public/views/preferencesDeleteWallet.html

18 lines
862 B
HTML
Raw Normal View History

2016-08-17 13:07:48 -03:00
<ion-view>
2016-08-16 16:47:51 -03:00
<ion-nav-bar class="bar-stable">
<ion-nav-title>Delete Wallet</ion-nav-title>
<ion-nav-buttons side="primary">
2016-08-17 15:53:17 -03:00
 <button class="button" href ui-sref="wallet.preferencesAdvanced">
2016-08-16 16:47:51 -03:00
     <i class="ion-arrow-left-c"></i> Back
   </button>
  </ion-nav-buttons>
</ion-nav-bar>
2016-08-17 13:07:48 -03:00
<ion-content class="has-header" ng-controller="preferencesDeleteWalletController" cache-view="false">
2016-08-16 16:47:51 -03:00
<div translate>Warning!</div>
<div translate>Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED</div>
<div class="right" ng-style="{'color':index.backgroundColor}" ng-show="!isDeletingWallet">
{{index.walletName}}<span ng-show="index.alias">({{index.alias}})</span>
</div>
<button class="button button-block button-stable" ng-click="deleteWallet()"translate>Delete wallet</button>
</ion-content>
</ion-view>