copay/public/views/preferencesEmail.html

22 lines
1.1 KiB
HTML
Raw Normal View History

2016-08-17 09:07:48 -07:00
<ion-view>
2016-08-16 12:47:51 -07:00
<ion-nav-bar class="bar-stable">
<ion-nav-title>Email Notifications</ion-nav-title>
<ion-nav-buttons side="primary">
2016-08-19 07:32:26 -07:00
<button class="button no-border" ui-sref="wallet.preferences">
<i class="icon ion-chevron-left"></i> Back
</button>
</ion-nav-buttons>
2016-08-16 12:47:51 -07:00
</ion-nav-bar>
2016-08-25 12:31:47 -07:00
<ion-content ng-controller="preferencesEmailController" >
2016-08-16 12:47:51 -07:00
<form name="emailForm" ng-submit="save(emailForm)" novalidate>
<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>
<input type="submit" class="button button-block button-stable" value="{{'Save'|translate}}" ng-disabled="emailForm.$invalid">
</form>
<div 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>