mirror of
https://github.com/itflow-org/itflow
synced 2026-03-03 04:14:54 +00:00
Force upper case on client abbreviations
This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user