18 lines
855 B
HTML
18 lines
855 B
HTML
<ion-view ng-controller="preferencesDeleteWalletController" cache-view="false">
|
||
<ion-nav-bar class="bar-stable">
|
||
<ion-nav-title>Delete Wallet</ion-nav-title>
|
||
<ion-nav-buttons side="primary">
|
||
<button class="button" href ui-sref="preferencesAdvanced">
|
||
<i class="ion-arrow-left-c"></i> Back
|
||
</button>
|
||
</ion-nav-buttons>
|
||
</ion-nav-bar>
|
||
<ion-content class="has-header">
|
||
<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>
|