2017-06-28 16:28:17 -03:00
< ion-view class = "settings" show-tabs >
2016-09-01 12:36:59 -04:00
< ion-nav-bar class = "bar-royal" >
2016-09-22 11:55:23 -03:00
< ion-nav-title >
2016-10-12 19:33:54 -04:00
{{'Wallet Name'|translate}}
2016-09-22 11:55:23 -03:00
< / ion-nav-title >
2016-08-29 16:48:15 -03:00
< ion-nav-back-button >
< / ion-nav-back-button >
2016-08-16 16:47:51 -03:00
< / ion-nav-bar >
2016-09-22 11:55:23 -03:00
< ion-content >
2016-10-26 16:44:03 -03:00
< div class = "settings-explanation" >
2016-10-12 19:33:54 -04:00
< div class = "settings-heading" translate > What do you call this wallet?< / div >
2016-10-12 20:10:22 -04:00
< div class = "settings-description" translate > When this wallet was created, it was called “ {{walletName}}” . You can change the name displayed on this device below.< / div >
2016-10-12 19:33:54 -04:00
< / div >
2016-08-16 16:47:51 -03:00
< form name = "aliasForm" ng-submit = "save(aliasForm)" novalidate >
2016-10-12 22:01:48 -04:00
< div class = "list settings-input-group" >
2016-09-05 17:36:11 -03:00
< label class = "item item-input item-stacked-label" >
2016-10-13 00:00:25 -04:00
< span class = "input-label" translate > Name< / span >
2016-10-12 19:33:54 -04:00
< input type = "text" id = "alias" name = "alias" ng-model = "alias.value" placeholder = "Personal Wallet" required >
2016-09-05 17:36:11 -03:00
< / label >
< / div >
< button type = "submit"
2016-10-11 23:23:54 -04:00
class="button button-standard button-primary"
2016-10-20 09:51:01 -04:00
ng-disabled="aliasForm.$invalid || (alias.value == walletAlias)" translate>
2016-09-05 17:36:11 -03:00
Save
< / button >
2016-08-16 16:47:51 -03:00
< / form >
< / ion-content >
< / ion-view >