-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html.haml
47 lines (46 loc) · 1.66 KB
/
checkout.html.haml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
%section.page-content
.container.full
%article.entry.cart
.cart-wrapper
.cart-list
%header#page-header
%h1.checkout-heading Checkout
%ol.checkout-steps
%li.current Shipping
%li Payment
.checkout-form
%h3.checkout-title Shipping Details
%form.border-form
.row
.input.text.half.unit
%label First Name
%input.form-control{:type => "text", :placeholder => "Enter first name"}
.input.text.half.unit
%label Last Name
%input.form-control{:type => "text", :placeholder => "Enter last name"}
.input.text
%label Email
%input.form-control{:type => "text", :placeholder => "Enter email address"}
.input.text
%label Company Name
%input.form-control{:type => "text", :placeholder => "Enter company name"}
.input.text
%label Address
%input.form-control{:type => "text", :placeholder => "Your Address"}
.input.submit
%a.next.button.dark.wide{:href => "#"} Next
%a.back.button.soft.wide{:href => "#"} Back
.totals.checkout-totals
%h6 Your Order
%p.font_small Shipping is calculated automatically based on your location.
%table
%tr
%th Products
%td $525.00
%tr.shipping
%th Shipping
%td
$50.00
%tr
%th Total
%td $575.00