Back to Microservices Demo

Cart

src/frontend/templates/cart.html

3-demo-concise783 B
Original Source

{{ if eq (len $.items) 0 }}

Your shopping cart is empty!

Items you add to your shopping cart will appear here.

Continue Shopping {{ else }}

Cart ({{ $.cart_size }})

Empty Cart Continue Shopping

{{ range $.items }}

{{ .Item.Name }}

SKU #{{ .Item.Id }}

Quantity: {{ .Quantity }}

{{ renderMoney .Price }}

{{ end }}

Shipping

{{ renderMoney .shipping_cost }}

Total

{{ renderMoney .total_cost }}

Shipping Address

E-mail Address

Street Address

Zip Code

City

State

Country

Payment Method

Credit Card Number

MonthJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberJanuary

Year {{ range $i, $y := $.expiration_years}}{{$y}}{{end}}

CVV

Place Order

{{ end }}