@owstack/ows-wallet-applet-coinbase
Version:
An OWS Wallet applet plugin for Coinbase.
42 lines (41 loc) • 1.5 kB
HTML
<ion-modal-view id="login-form">
<ion-header-bar class="bar bar-coinbase">
</ion-header-bar>
<ion-content scroll="false">
<div class="container">
<div class="dialog">
<div class="item title" translate>
Account Authorization
</div>
<div class="item item-text-wrap" translate>
Waiting for your authorization to access your Coinbase account.
<div translate>
A browser window has just opened for you to authorize at Coinbase.
After you authorize with Coinbase you will be automatically forwarded to your account dashboard.
<span ng-if="allowCodeEntry">
If you are not automatically forwarded and have an authorization code you may enter it below to continue.
</span>
</div>
</div>
<label class="item item-input" ng-if="allowCodeEntry">
<input type="text" placeholder="Enter Code" ng-model="formData.oauthCode">
</label>
<div class="row">
<div class="col" ng-class="{'col-50': allowCodeEntry}">
<button class="button button-clear cancel" ng-click="cancel()" translate>
CANCEL
</button>
</div>
<div class="col" ng-if="allowCodeEntry">
<button class="button button-clear submit" ng-click="submit()" translate>
SUBMIT CODE
</button>
</div>
</div>
</div>
<div class="help">
Need help?
</div>
</div>
</ion-content>
</ion-modal-view>