Switched State to a text field instead of select field in all areas where state exist also added all countries to the country list

This commit is contained in:
johnnyq
2021-11-04 00:20:33 -04:00
parent bbcec94b80
commit 72cf61ab61
10 changed files with 395 additions and 198 deletions

View File

@@ -70,12 +70,7 @@
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-flag"></i></span>
</div>
<select class="form-control select2" name="state">
<option value="">- State -</option>
<?php foreach($states_array as $state_abbr => $state_name) { ?>
<option value="<?php echo $state_abbr; ?>"><?php echo $state_name; ?></option>
<?php } ?>
</select>
<input type="text" class="form-control" name="state" placeholder="State">
</div>
</div>