Check within the browser that callsign is provided before submitting the form

这个提交包含在:
Peter Goodhall 2019-05-22 22:52:01 +01:00
父节点 481f617b5a
当前提交 3ee8f7f14a
共有 2 个文件被更改,包括 8 次插入1 次删除

查看文件

@ -69,7 +69,7 @@
<!-- Callsign Input -->
<div class="form-group">
<label for="callsign">Callsign</label>
<input type="text" class="form-control" id="callsign" name="callsign">
<input type="text" class="form-control" id="callsign" name="callsign" required>
<small id="callsign_info" class="form-text text-muted"></small>
</div>

查看文件

@ -72,6 +72,13 @@
border: none;
}
input:invalid {
box-shadow: 0 0 5px 1px red;
}
input:focus:invalid {
box-shadow: none;
}
TD.eqsl{
width: 33px;