summaryrefslogtreecommitdiff
path: root/iridescence/src/components/checkout/CheckoutForm.vue
blob: a2ddfade4c01ca424ae46acfd377e6fd3c8b1e7f (plain) (blame)
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
48
49
50
51
52
53
54
55
<template>
  <div class="container">
    <section class="section">
      <h1 class="title">Customer Info</h1>
      <hr />

      <div class="field is-horizontal">
        <div class="field-label">
          <label class="label">Name</label>
        </div>
        <div class="field-body">
          <div class="field">
            <p class="control is-expanded ">
              <input class="input" type="text" placeholder="given name" />
            </p>
          </div>
          <div class="field">
            <p class="control is-expanded">
              <input class="input" type="text" placeholder="surname" />
            </p>
          </div>
        </div>
      </div>

      <div class="field is-horizontal">
        <div class="field-label">
          <label class="label">E-mail Address</label>
        </div>
        <div class="field-body">
          <div class="field">
            <p class="control is-expanded">
              <input class="input" type="email" placeholder="email address" />
            </p>
          </div>
        </div>
      </div>
    </section>
    <section class="section">
      <h1 class="title">Payment</h1>
      <hr />
    </section>
    <section class="section">
      <h1 class="title">Delivery</h1>
      <hr />
    </section>
  </div>
</template>

<script>
export default {
  name: "CheckoutForm",
  computed: {},
  methods: {}
};
</script>