To force the input to be uppercase, you add this code after the type=”text”… onkeyup=”this.value = this.value.toUpperCase();”

An example of this would look like the code below..

<input class=”infusion-field-input” id=”inf_custom_KioskCode” name=”inf_custom_KioskCode” placeholder=”Kiosk Code *” type=”text” onkeyup=”this.value = this.value.toUpperCase();” />