mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Don't allow whitespaces in forms for station_calls
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user