copay/public/views/preferencesAlias.html

17 lines
826 B
HTML
Raw Normal View History

2015-05-18 07:51:36 -07:00
<div
class="topbar-container"
2015-05-14 06:39:22 -07: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-04 10:57:23 -07:00
<label><span translate>Alias for <i>{{index.walletName}}</i></span></label>
2015-05-14 06:39:22 -07:00
<input type="text" id="alias2" type="text" name="alias2" ng-model="prefAlias.alias">
2015-05-18 07:51:36 -07:00
<input type="submit" class="button expand black round" value="{{'Save'|translate}}"
2015-05-14 06:39:22 -07:00
ng-style="{'background-color':index.backgroundColor}">
</form>
2015-05-20 11:18:49 -07:00
<p class="text-gray text-center columns size-14" translate>Changing wallet alias only affects the local wallet name.</p>
2015-05-14 06:39:22 -07:00
</div>
<div class="extra-margin-bottom"></div>