Don't allow whitespaces in forms for station_calls

This commit is contained in:
int2001
2025-03-21 16:16:17 +00:00
parent c4bddc0d29
commit 18f247d5be
3 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@
<label for="station_callsign" class="form-label mb-0"><?= __("Station Callsign"); ?></label>
</div>
<div class="col-md-8">
<input type="text" class="form-control uppercase" id="station_callsign" name="station_callsign" placeholder="4W7EST" required>
<input type="text" class="form-control uppercase" id="station_callsign" pattern="^\S+$" name="station_callsign" placeholder="4W7EST" required>
</div>
</div>
<div class="row mb-3 align-items-center">