|
|
|
@ -18,14 +18,14 @@ |
|
|
|
<td>{{c.productname}}</td> |
|
|
|
<td>{{c.productprice}}</td> |
|
|
|
<td> |
|
|
|
<button class="deleteButton" (click)="removeItem(c)">Delete</button> |
|
|
|
<button class="CartButtons" (click)="removeItem(c)">Delete</button> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td colspan="4"></td> |
|
|
|
<td><button (click)=emptyCart()>Empty Cart</button></td> |
|
|
|
<td><button routerLink='/'>Shop More</button></td> |
|
|
|
<td><button>Checkout</button></td> |
|
|
|
<td><button (click)=emptyCart() class="CartButtons">Empty Cart</button></td> |
|
|
|
<td><button routerLink='/' class="CartButtons">Shop More</button></td> |
|
|
|
<td><button class="CartButtons">Checkout</button></td> |
|
|
|
<td><strong>Grand Total : Rs.{{grandTotal}}</strong></td> |
|
|
|
</tr> |
|
|
|
</tbody> |
|
|
|
|