|
| 1 | +<template> |
| 2 | + <div class="container mx-auto flex py-10 mt-10 sm:mt-20"> |
| 3 | + <div class="w-1/2"> |
| 4 | + <div class="leading-loose"> |
| 5 | + <form |
| 6 | + class="max-w-xl m-4 p-10 bg-white rounded shadow-xl text-left" |
| 7 | + > |
| 8 | + <p class="text-gray-600 text-2xl font-semibold mb-8"> |
| 9 | + Customer information |
| 10 | + </p> |
| 11 | + <div class=""> |
| 12 | + <label class="block text-sm text-gray-00" for="cus_name" |
| 13 | + >Name</label |
| 14 | + > |
| 15 | + <input |
| 16 | + class="w-full px-5 py-1 text-gray-700 bg-gray-200 rounded" |
| 17 | + id="cus_name" |
| 18 | + name="cus_name" |
| 19 | + type="text" |
| 20 | + required="" |
| 21 | + placeholder="Your Name" |
| 22 | + aria-label="Name" |
| 23 | + /> |
| 24 | + </div> |
| 25 | + <div class="mt-2"> |
| 26 | + <label |
| 27 | + class="block text-sm text-gray-600" |
| 28 | + for="cus_email" |
| 29 | + >Email</label |
| 30 | + > |
| 31 | + <input |
| 32 | + class="w-full px-5 py-4 text-gray-700 bg-gray-200 rounded" |
| 33 | + id="cus_email" |
| 34 | + name="cus_email" |
| 35 | + type="text" |
| 36 | + required="" |
| 37 | + placeholder="Your Email" |
| 38 | + aria-label="Email" |
| 39 | + /> |
| 40 | + </div> |
| 41 | + <div class="mt-2"> |
| 42 | + <label |
| 43 | + class=" block text-sm text-gray-600" |
| 44 | + for="cus_email" |
| 45 | + >Address</label |
| 46 | + > |
| 47 | + <input |
| 48 | + class="w-full px-2 py-2 text-gray-700 bg-gray-200 rounded" |
| 49 | + id="cus_email" |
| 50 | + name="cus_email" |
| 51 | + type="text" |
| 52 | + required="" |
| 53 | + placeholder="Street" |
| 54 | + aria-label="Email" |
| 55 | + /> |
| 56 | + </div> |
| 57 | + <div class="mt-2"> |
| 58 | + <label |
| 59 | + class="hidden text-sm block text-gray-600" |
| 60 | + for="cus_email" |
| 61 | + >City</label |
| 62 | + > |
| 63 | + <input |
| 64 | + class="w-full px-2 py-2 text-gray-700 bg-gray-200 rounded" |
| 65 | + id="cus_email" |
| 66 | + name="cus_email" |
| 67 | + type="text" |
| 68 | + required="" |
| 69 | + placeholder="City" |
| 70 | + aria-label="Email" |
| 71 | + /> |
| 72 | + </div> |
| 73 | + <div class="inline-block mt-2 w-1/2 pr-1"> |
| 74 | + <label |
| 75 | + class="hidden block text-sm text-gray-600" |
| 76 | + for="cus_email" |
| 77 | + >Country</label |
| 78 | + > |
| 79 | + <input |
| 80 | + class="w-full px-2 py-2 text-gray-700 bg-gray-200 rounded" |
| 81 | + id="cus_email" |
| 82 | + name="cus_email" |
| 83 | + type="text" |
| 84 | + required="" |
| 85 | + placeholder="Country" |
| 86 | + aria-label="Email" |
| 87 | + /> |
| 88 | + </div> |
| 89 | + <div class="inline-block mt-2 -mx-1 pl-1 w-1/2"> |
| 90 | + <label |
| 91 | + class="hidden block text-sm text-gray-600" |
| 92 | + for="cus_email" |
| 93 | + >Zip</label |
| 94 | + > |
| 95 | + <input |
| 96 | + class="w-full px-2 py-2 text-gray-700 bg-gray-200 rounded" |
| 97 | + id="cus_email" |
| 98 | + name="cus_email" |
| 99 | + type="text" |
| 100 | + required="" |
| 101 | + placeholder="Zip" |
| 102 | + aria-label="Email" |
| 103 | + /> |
| 104 | + </div> |
| 105 | + <p class="mt-4 text-gray-800 font-medium"> |
| 106 | + Payment information |
| 107 | + </p> |
| 108 | + <div class=""> |
| 109 | + <label |
| 110 | + class="block text-sm text-gray-600" |
| 111 | + for="cus_name" |
| 112 | + >Card</label |
| 113 | + > |
| 114 | + <input |
| 115 | + class="w-full px-2 py-2 text-gray-700 bg-gray-200 rounded" |
| 116 | + id="cus_name" |
| 117 | + name="cus_name" |
| 118 | + type="text" |
| 119 | + required="" |
| 120 | + placeholder="Card Number MM/YY CVC" |
| 121 | + aria-label="Name" |
| 122 | + /> |
| 123 | + </div> |
| 124 | + <div class="mt-4"> |
| 125 | + <button |
| 126 | + class="px-4 py-1 text-white font-light tracking-wider bg-gray-900 rounded" |
| 127 | + type="submit" |
| 128 | + > |
| 129 | + $3.00 |
| 130 | + </button> |
| 131 | + </div> |
| 132 | + </form> |
| 133 | + </div> |
| 134 | + </div> |
| 135 | + <div class="w-1/2"> |
| 136 | + <div class="col-lg-4 col-md-4 offset-md-1"> |
| 137 | + <h2 class="h4 pb-3">Contact details</h2> |
| 138 | + <h3 class="h6 pb-2">North America - New York, NY</h3> |
| 139 | + <ul class="list-unstyled fs-sm pb-3"> |
| 140 | + <li class="d-flex align-items-top mb-3"> |
| 141 | + <i |
| 142 | + class="ai-map-pin fs-xl text-muted mt-1 me-2 pe-1" |
| 143 | + ></i> |
| 144 | + <div> |
| 145 | + 396 Lillian Blvd, Holbrook,<br />NY 11741, USA<br /><a |
| 146 | + class="fancy-link" |
| 147 | + href="#map" |
| 148 | + data-scroll="" |
| 149 | + >See on the map</a |
| 150 | + > |
| 151 | + </div> |
| 152 | + </li> |
| 153 | + <li class="d-flex align-items-center mb-3"> |
| 154 | + <i class="ai-mail fs-xl text-muted me-2 pe-1"></i> |
| 155 | + <div>new.york@example.com</div> |
| 156 | + </li> |
| 157 | + <li class="d-flex align-items-center mb-3"> |
| 158 | + <i class="ai-phone fs-xl text-muted me-2 pe-1"></i> |
| 159 | + <div>+ 1 526 220 0459</div> |
| 160 | + </li> |
| 161 | + </ul> |
| 162 | + <h3 class="h6 pb-2">Europe - Berlin, Germany</h3> |
| 163 | + <ul class="list-unstyled fs-sm"> |
| 164 | + <li class="d-flex align-items-top mb-3"> |
| 165 | + <i |
| 166 | + class="ai-map-pin fs-xl text-muted mt-1 me-2 pe-1" |
| 167 | + ></i> |
| 168 | + <div> |
| 169 | + Mohrenstrasse 37 10117,<br />Berlin, Germany<br /> |
| 170 | + </div> |
| 171 | + </li> |
| 172 | + <li class="d-flex align-items-center mb-3"> |
| 173 | + <i class="ai-mail fs-xl text-muted me-2 pe-1"></i> |
| 174 | + <div>berlin@example.com</div> |
| 175 | + </li> |
| 176 | + <li class="d-flex align-items-center mb-3"> |
| 177 | + <i class="ai-phone fs-xl text-muted me-2 pe-1"></i> |
| 178 | + <div>030 778 345 26</div> |
| 179 | + </li> |
| 180 | + </ul> |
| 181 | + </div> |
| 182 | + </div> |
| 183 | + </div> |
| 184 | +</template> |
1 | 185 |
|
| 186 | +<script> |
| 187 | +export default { |
| 188 | + setup() {}, |
| 189 | +}; |
| 190 | +</script> |
0 commit comments