Wallet/public/views/preferencesAlias.html

17 lines
803 B
HTML
Raw Normal View History

2016-08-17 13:07:48 -03:00
<ion-view>
<ion-nav-bar class="bar-royal">
2016-08-29 16:48:15 -03:00
<ion-nav-back-button>
<i class="icon ion-ios-arrow-thin-left"></i>
2016-08-29 16:48:15 -03:00
</ion-nav-back-button>
2016-08-16 16:47:51 -03:00
</ion-nav-bar>
2016-08-25 16:31:47 -03:00
<ion-content ng-controller="preferencesAliasController" >
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>