Fix typo in placeholder for abbreviation input

(@BoredManCodes)
This commit is contained in:
wrongecho
2026-09-06 20:33:39 +01:00
committed by GitHub
parent 97fe67341a
commit 4f3d9f88b0

View File

@@ -101,7 +101,7 @@ ob_start();
<label>Shortened Name</label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-id-badge"></i></span>
<input type="text" class="form-control" name="abbreviation" placeholder="Shortned name for client - Max chars 6" value="<?= $client_abbreviation ?>" maxlength="6" oninput="this.value = this.value.toUpperCase()">
<input type="text" class="form-control" name="abbreviation" placeholder="Shortened name for client - Max chars 6" value="<?= $client_abbreviation ?>" maxlength="6" oninput="this.value = this.value.toUpperCase()">
</div>
</div>