32 lines
704 B
HTML
32 lines
704 B
HTML
<!-- #docplaster -->
|
|
<!-- #docregion checkout-form-2 -->
|
|
<h3>Cart</h3>
|
|
|
|
<p>
|
|
<a routerLink="/shipping">Shipping Prices</a>
|
|
</p>
|
|
|
|
<div class="cart-item" *ngFor="let item of items">
|
|
<span>{{ item.name }} </span>
|
|
<span>{{ item.price | currency }}</span>
|
|
</div>
|
|
|
|
<!-- #docregion checkout-form-1 -->
|
|
<form [formGroup]="checkoutForm" (ngSubmit)="onSubmit(checkoutForm.value)">
|
|
<!-- #enddocregion checkout-form-1 -->
|
|
|
|
<div>
|
|
<label>Name</label>
|
|
<input type="text" formControlName="name">
|
|
</div>
|
|
|
|
<div>
|
|
<label>Address</label>
|
|
<input type="text" formControlName="address">
|
|
</div>
|
|
|
|
<button class="button" type="submit">Purchase</button>
|
|
|
|
<!-- #docregion checkout-form-1 -->
|
|
</form>
|