Wallet/public/views/preferencesAlias.html

20 lines
836 B
HTML
Raw Normal View History

2015-05-18 11:51:36 -03:00
<div
class="topbar-container"
2015-05-14 10:39:22 -03:00
ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Wallet Alias'; goBackToState = 'preferences'">
</div>
2015-10-08 11:58:55 -03:00
<div class="content preferences" ng-controller="preferencesAliasController as prefAlias">
<h4></h4>
2015-05-14 10:39:22 -03:00
<form name="settingsAliasForm" ng-submit="prefAlias.save()" class="columns">
2015-06-05 02:57:23 +09:00
<label><span translate>Alias for <i>{{index.walletName}}</i></span></label>
2015-05-14 10:39:22 -03:00
<input type="text" id="alias2" type="text" name="alias2" ng-model="prefAlias.alias">
2015-05-18 11:51:36 -03:00
<input type="submit" class="button expand black round" value="{{'Save'|translate}}"
2015-05-14 10:39:22 -03:00
ng-style="{'background-color':index.backgroundColor}">
</form>
2015-10-08 11:58:55 -03:00
<div class="text-gray size-12 text-center" translate>Changing wallet alias only affects the local wallet name.
</div>
2015-05-14 10:39:22 -03:00
</div>
<div class="extra-margin-bottom"></div>