econocart/src/pages/product/product-create-page/product-create-page.html

24 lines
607 B
HTML

<!--
Generated template for the ProductCreatePage page.
See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar color="tertiary">
<ion-title>Cadastrar Produto</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-list>
<ion-item>
<ion-label stacked>Nome do Produto</ion-label>
<ion-input type="text" [(ngModel)]="_product.sName"></ion-input>
</ion-item>
</ion-list>
<button ion-button full (click)="salvar()">Salvar</button>
</ion-content>