uppercase in input field

This commit is contained in:
HB9HIL
2024-07-23 14:37:46 +02:00
parent e0910dfed1
commit 4657a15d30
2 changed files with 5 additions and 1 deletions

View File

@@ -88,7 +88,7 @@ To use this widget insert this Element:
<label for="oqrs_callsign" class="col-form-label"><?= __("Your Callsign:"); ?></label>
</div>
<div class="col-auto">
<input type="text" name="callsign" id="oqrs_callsign" class="form-control form-control-sm border">
<input type="text" name="callsign" id="oqrs_callsign" class="form-control form-control-sm border uppercase">
</div>
<div class="col-auto">
<input type="hidden" name="widget" value="true">

View File

@@ -1038,3 +1038,7 @@ label {
.blank-row {
height: 20px !important;
}
.uppercase {
text-transform: uppercase;
}