50 lines
1.1 KiB
HTML
50 lines
1.1 KiB
HTML
<!--
|
|
Generated template for the BuyPage page.
|
|
|
|
See http://ionicframework.com/docs/components/#navigation for more info on
|
|
Ionic pages and navigation.
|
|
-->
|
|
<ion-header>
|
|
|
|
<ion-navbar>
|
|
<ion-title>Échange de monnaie</ion-title>
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
<ion-content padding>
|
|
<ion-list>
|
|
|
|
<ion-item>
|
|
<ion-label stacked>Montant</ion-label>
|
|
<ion-input [(ngModel)]="amount" name="amount" type="number" value="10"></ion-input>
|
|
</ion-item>
|
|
|
|
<ion-item>
|
|
<ion-label stacked>N° de carte</ion-label>
|
|
<ion-input type="number"></ion-input>
|
|
</ion-item>
|
|
|
|
<ion-item>
|
|
<ion-label stacked>Titulaire de la carte</ion-label>
|
|
<ion-input type="text"></ion-input>
|
|
</ion-item>
|
|
|
|
<ion-item>
|
|
<ion-label stacked>Date d'expiration</ion-label>
|
|
<ion-input type="number"></ion-input>
|
|
</ion-item>
|
|
|
|
<ion-item>
|
|
<ion-label stacked>Cryptogramme</ion-label>
|
|
<ion-input type="number"></ion-input>
|
|
</ion-item>
|
|
|
|
<button ion-button (click)="sendTransaction(amount)">Payer {{amount}} €</button>
|
|
|
|
|
|
</ion-list>
|
|
|
|
</ion-content>
|