Skip to content

Commit 31038b0

Browse files
MartijnCuppensXhmikosR
authored andcommitted
examples: Fix checkout page (#29886)
1 parent 7d2f24e commit 31038b0

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

site/content/docs/4.3/examples/checkout/index.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ <h4 class="mb-3">Billing address</h4>
122122
<div class="row">
123123
<div class="col-md-5 mb-3">
124124
<label for="country">Country</label>
125-
<select class="custom-select d-block w-100" id="country" required>
125+
<select class="form-select" id="country" required>
126126
<option value="">Choose...</option>
127127
<option>United States</option>
128128
</select>
@@ -132,7 +132,7 @@ <h4 class="mb-3">Billing address</h4>
132132
</div>
133133
<div class="col-md-4 mb-3">
134134
<label for="state">State</label>
135-
<select class="custom-select d-block w-100" id="state" required>
135+
<select class="form-select" id="state" required>
136136
<option value="">Choose...</option>
137137
<option>California</option>
138138
</select>
@@ -149,30 +149,30 @@ <h4 class="mb-3">Billing address</h4>
149149
</div>
150150
</div>
151151
<hr class="mb-4">
152-
<div class="custom-control custom-checkbox">
153-
<input type="checkbox" class="custom-control-input" id="same-address">
154-
<label class="custom-control-label" for="same-address">Shipping address is the same as my billing address</label>
152+
<div class="form-check">
153+
<input type="checkbox" class="form-check-input" id="same-address">
154+
<label class="form-check-label" for="same-address">Shipping address is the same as my billing address</label>
155155
</div>
156-
<div class="custom-control custom-checkbox">
157-
<input type="checkbox" class="custom-control-input" id="save-info">
158-
<label class="custom-control-label" for="save-info">Save this information for next time</label>
156+
<div class="form-check">
157+
<input type="checkbox" class="form-check-input" id="save-info">
158+
<label class="form-check-label" for="save-info">Save this information for next time</label>
159159
</div>
160160
<hr class="mb-4">
161161

162162
<h4 class="mb-3">Payment</h4>
163163

164164
<div class="d-block my-3">
165-
<div class="custom-control custom-radio">
166-
<input id="credit" name="paymentMethod" type="radio" class="custom-control-input" checked required>
167-
<label class="custom-control-label" for="credit">Credit card</label>
165+
<div class="form-check">
166+
<input id="credit" name="paymentMethod" type="radio" class="form-check-input" checked required>
167+
<label class="form-check-label" for="credit">Credit card</label>
168168
</div>
169-
<div class="custom-control custom-radio">
170-
<input id="debit" name="paymentMethod" type="radio" class="custom-control-input" required>
171-
<label class="custom-control-label" for="debit">Debit card</label>
169+
<div class="form-check">
170+
<input id="debit" name="paymentMethod" type="radio" class="form-check-input" required>
171+
<label class="form-check-label" for="debit">Debit card</label>
172172
</div>
173-
<div class="custom-control custom-radio">
174-
<input id="paypal" name="paymentMethod" type="radio" class="custom-control-input" required>
175-
<label class="custom-control-label" for="paypal">PayPal</label>
173+
<div class="form-check">
174+
<input id="paypal" name="paymentMethod" type="radio" class="form-check-input" required>
175+
<label class="form-check-label" for="paypal">PayPal</label>
176176
</div>
177177
</div>
178178
<div class="row">

0 commit comments

Comments
 (0)