Force upper case on client abbreviations

This commit is contained in:
johnnyq
2024-06-07 18:31:53 -04:00
parent 24022eca55
commit e920ccc5e4
2 changed files with 2 additions and 2 deletions

View File

@@ -297,7 +297,7 @@
<div class="input-group-prepend"> <div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-id-badge"></i></span> <span class="input-group-text"><i class="fa fa-fw fa-id-badge"></i></span>
</div> </div>
<input type="text" class="form-control" name="abbreviation" placeholder="Abbreviated name for client" maxlength="5"> <input type="text" class="form-control" name="abbreviation" placeholder="Abbreviated name for client" maxlength="5" oninput="this.value = this.value.toUpperCase()">
</div> </div>
</div> </div>

View File

@@ -190,7 +190,7 @@
<div class="input-group-prepend"> <div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-id-badge"></i></span> <span class="input-group-text"><i class="fa fa-fw fa-id-badge"></i></span>
</div> </div>
<input type="text" class="form-control" name="abbreviation" placeholder="Abbreviated name for client" value="<?php echo $client_abbreviation; ?>" maxlength="5"> <input type="text" class="form-control" name="abbreviation" placeholder="Abbreviated name for client" value="<?php echo $client_abbreviation; ?>" maxlength="5" oninput="this.value = this.value.toUpperCase()">
</div> </div>
</div> </div>