copay/public/views/preferencesEmail.html

26 lines
1.2 KiB
HTML
Raw Normal View History

2016-05-17 13:36:01 -07:00
<div
class="topbar-container"
2015-05-14 13:21:45 -07:00
ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Email Notifications'; goBackToState = 'preferences'">
</div>
<div class="content preferences" ng-controller="preferencesEmailController">
2015-10-08 07:58:55 -07:00
<h4></h4>
2015-05-14 13:21:45 -07:00
<form name="emailForm" ng-submit="save(emailForm)" class="columns" novalidate ng-init="email = index.preferences.email">
<div class="box-notification" ng-show="error">
2015-05-14 13:21:45 -07:00
<span class="text-warning size-14">
{{error|translate}}
2015-05-14 13:21:45 -07:00
</span>
</div>
2015-09-12 20:10:02 -07:00
<label translate>Email for wallet notifications</label>
<input type="email" id="email" name="email" ng-model="email" required>
2015-05-19 11:30:49 -07:00
<input type="submit" class="button expand black round" value="{{'Save'|translate}}"
2015-05-19 10:10:47 -07:00
ng-style="{'background-color':index.backgroundColor}" ng-disabled="emailForm.$invalid && !index.preferences.email">
2015-05-14 13:21:45 -07:00
</form>
<div class="text-gray size-12 text-center" translate>Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more.
2015-10-08 07:58:55 -07:00
</div>
2015-05-14 13:21:45 -07:00
</div>
<div class="extra-margin-bottom"></div>