copay/public/views/preferencesEmail.html

27 lines
1.0 KiB
HTML
Raw Normal View History

2016-08-17 09:07:48 -07:00
<ion-view>
<ion-nav-bar class="bar-royal">
<ion-nav-title>
{{'Email Notifications'|translate}}
</ion-nav-title>
2016-08-29 12:48:15 -07:00
<ion-nav-back-button>
</ion-nav-back-button>
2016-08-16 12:47:51 -07:00
</ion-nav-bar>
<ion-content>
2016-08-16 12:47:51 -07:00
<form name="emailForm" ng-submit="save(emailForm)" novalidate>
<div class="card list">
<label class="item item-input item-stacked-label">
<span class="input-label" transalate>Email for wallet notifications</span>
<input type="email" id="email" name="email" ng-model="email" required></input>
</label>
</div>
<button type="submit"
class="button button-block button-positive"
ng-disabled="emailForm.$invalid" translate>
Save
</button>
2016-08-16 12:47:51 -07:00
</form>
<div class="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-05-14 13:21:45 -07:00
</div>
2016-08-16 12:47:51 -07:00
</ion-content>
</ion-view>