Wallet/public/views/preferencesAlias.html

20 lines
968 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>Alias</ion-nav-title>
<ion-nav-buttons side="primary">
2016-08-17 15:53:17 -03:00
 <button class="button" href ui-sref="wallet.preferences">
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="preferencesAliasController" cache-view="false">
2016-08-16 16:47:51 -03:00
<form name="aliasForm" ng-submit="save(aliasForm)" novalidate>
<label class="item item-input item-stacked-label">
<span class="input-label" transalate>Alias for {{walletName}}</span>
<input type="text" id="alias" name="alias" ng-model="alias" placeholder="John" required></input>
</label>
<input type="submit" class="button button-block button-stable" value="{{'Save'|translate}}" ng-disabled="aliasForm.$invalid">
</form>
<div translate>Changing wallet alias only affects the local wallet name.</div>
</ion-content>
</ion-view>