2016-09-01 09:25:57 -04:00
|
|
|
<ion-view ng-controller="collectEmailController" id="onboarding-collect-email" class="onboarding">
|
2016-10-06 19:41:50 -04:00
|
|
|
<ion-content scroll="false">
|
|
|
|
|
<div id="success-container">
|
|
|
|
|
<img src="img/onboarding-success.svg" id="success-image" />
|
|
|
|
|
<div id="success-message" translate>Wallet Created</div>
|
2016-09-01 09:25:57 -04:00
|
|
|
</div>
|
2016-09-02 15:55:43 -03:00
|
|
|
<div id="collect-email">
|
2016-10-06 19:41:50 -04:00
|
|
|
<div id="collect-email-inner" ng-if="!confirmation">
|
|
|
|
|
<div translate class="heading">Email Notifications</div>
|
|
|
|
|
<div translate class="prompt">Where would you like to receive email notifications about payments?</div>
|
2016-10-04 22:21:43 -04:00
|
|
|
<form id="email-form" name="emailForm" ng-submit="confirm(emailForm)" novalidate>
|
2016-10-06 19:41:50 -04:00
|
|
|
<label class="item item-input" id="email-label">
|
|
|
|
|
<input type="email" name="email" ng-model="email" placeholder="email address" required></input>
|
2016-09-09 11:14:04 -03:00
|
|
|
</label>
|
2016-10-04 22:21:43 -04:00
|
|
|
<ion-checkbox ng-model="data.accept"><span translate>Get news and updates from BitPay</span></ion-checkbox>
|
2016-10-07 02:10:30 -04:00
|
|
|
<button class="button button-standard button-primary" disabled>
|
2016-10-06 19:41:50 -04:00
|
|
|
Continue →
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
2016-09-09 11:14:04 -03:00
|
|
|
</div>
|
|
|
|
|
<div ng-if="confirmation">
|
2016-10-04 22:21:43 -04:00
|
|
|
<p translate class="confirm">Is this email address correct?</p>
|
|
|
|
|
<p class="user-email">{{email}}</p>
|
2016-09-09 11:14:04 -03:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col col-50">
|
|
|
|
|
<button class="button button-block button-stable" ng-click="cancel()">
|
|
|
|
|
{{'No' | translate}}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col col-50">
|
|
|
|
|
<button class="button button-block button-stable" ng-click="save()">
|
|
|
|
|
{{'Yes' | translate}}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="overlay collect-overlay">
|
2016-09-13 17:12:17 -03:00
|
|
|
<button class="button button-stable button-clear" ng-click="goNextView()">
|
2016-09-09 11:14:04 -03:00
|
|
|
{{'Skip' | translate}}
|
|
|
|
|
</button>
|
2016-09-02 06:50:23 -04:00
|
|
|
</div>
|
2016-09-02 15:55:43 -03:00
|
|
|
</ion-content>
|
2016-08-25 16:31:47 -03:00
|
|
|
</ion-view>
|