File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1515 </div>
1616 <div class="form-input state">
1717 <label for="state">State</label>
18- <select name="state" data-country-selector="state-selector" required>
18+ <select autocomplete="off" name="state" data-country-selector="state-selector" required>
1919 <?php foreach ($ state_list as $ state ) : ?>
2020 <option value="<?= $ state ['code ' ] ?> ">
2121 <?= $ state ['name ' ]; ?>
2525 </div>
2626 <div class="form-input country">
2727 <label for="country">Country</label>
28- <select name="country" data-country-selector="selector" required>
28+ <select autocomplete="off" name="country" data-country-selector="selector" required>
2929 <?php foreach ($ country_list as $ country ) : ?>
3030 <option value="<?= $ country ["code " ] ?> " <?php ($ country ["code " ] === "US " ) ? 'selected ' : '' ?> >
3131 <?= $ country ["name " ]; ?>
Original file line number Diff line number Diff line change 3939 </div>
4040 <div class="form-input state">
4141 <label for="state">State</label>
42-
43- <select name="state" data-country-selector="state-selector" required>
42+ <select autocomplete="off" name="state" data-country-selector="state-selector" required>
4443 <?php foreach ($ state_list as $ state ) : ?>
4544 <option value="<?= $ state ['code ' ] ?> ">
4645 <?= $ state ['name ' ]; ?>
4746 </option>
4847 <?php endforeach ; ?>
4948 </select>
50-
5149 </div>
5250 <div class="form-input country">
5351 <label for="country">Country</label>
54- <select name="country" data-country-selector="selector" required>
52+ <select autocomplete="off" name="country" data-country-selector="selector" required>
5553 <?php foreach ($ country_list as $ country ) : ?>
5654 <option value="<?= $ country ["code " ] ?> " <?php ($ country ["code " ] === "US " ) ? 'selected ' : '' ?> >
5755 <?= $ country ["name " ]; ?>
You can’t perform that action at this time.
0 commit comments