Wallet/public/views/preferencesAlias.html

16 lines
826 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>
<div class="content preferences p20v" ng-controller="preferencesAliasController as prefAlias">
<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-05-20 20:18:49 +02:00
<p class="text-gray text-center columns size-14" translate>Changing wallet alias only affects the local wallet name.</p>
2015-05-14 10:39:22 -03:00
</div>
<div class="extra-margin-bottom"></div>