2016-09-01 09:25:57 -04:00
|
|
|
<ion-view ng-controller="collectEmailController" id="onboarding-collect-email" class="onboarding">
|
2016-09-01 11:24:52 -04:00
|
|
|
<ion-content>
|
2016-09-01 09:25:57 -04:00
|
|
|
<div class="row">
|
2016-09-02 13:00:38 -03:00
|
|
|
<img src="img/onboarding-success.svg" class="col col-75" id="success-image" />
|
2016-09-01 11:24:52 -04:00
|
|
|
</div>
|
|
|
|
|
<div class="row text-center">
|
|
|
|
|
<h3 translate class="col">Wallet Created</h3>
|
2016-09-01 09:25:57 -04:00
|
|
|
</div>
|
2016-09-02 15:55:43 -03:00
|
|
|
<div id="collect-email">
|
2016-09-09 11:14:04 -03:00
|
|
|
<div ng-if="!confirmation">
|
|
|
|
|
<div class="row text-center">
|
|
|
|
|
<p translate class="col col-75">Where would you like to receive email notifications about payments?</p>
|
|
|
|
|
</div>
|
|
|
|
|
<form name="emailForm" ng-submit="confirm(emailForm)" novalidate>
|
|
|
|
|
<label class="item item-input col col-75">
|
|
|
|
|
<i class="icon ion-arrow-right-c"></i>
|
2016-09-16 14:43:01 -03:00
|
|
|
<input type="email" id="email" name="email" ng-model="email" placeholder="satoshi@example.com" required></input>
|
2016-09-09 11:14:04 -03:00
|
|
|
</label>
|
|
|
|
|
</form>
|
2016-09-19 14:18:51 -04:00
|
|
|
<ion-list id="news-updates" class="row">
|
|
|
|
|
<ion-checkbox ng-model="data.accept" class="col col-80"><span translate>Get news and updates from Bitpay</span></ion-checkbox>
|
2016-09-16 14:40:55 -03:00
|
|
|
</ion-list>
|
2016-09-09 11:14:04 -03:00
|
|
|
</div>
|
|
|
|
|
<div ng-if="confirmation">
|
|
|
|
|
<div class="row text-center">
|
|
|
|
|
<p translate class="col col-75">Is this email address correct?</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row text-center">
|
|
|
|
|
<p class="col col-75">{{email}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<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>
|