Fixing some classes for correct styling
这个提交包含在:
父节点
b2dc406953
当前提交
f7cf107feb
共有 2 个文件被更改,包括 4 次插入 和 4 次删除
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
<form class="d-flex align-items-center" enctype="multipart/form-data">
|
||||
<label class="my-1 me-2" for="station">Select station: </label>
|
||||
<select id="station" class="form-select my-1 me-sm-2" name="station">
|
||||
<select id="station" class="form-select w-auto my-1 me-sm-2" name="station">
|
||||
<?php foreach($stations->result() as $station) {
|
||||
echo '<option value="' . $station->station_id . '">' . $station->station_profile_name . ' - ' . $station->station_callsign . '</option>'."\n";
|
||||
} ?>
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<div class="resulttable"></div>
|
||||
|
||||
<div class="searchinfo"></div>
|
||||
<?php
|
||||
<?php
|
||||
}
|
||||
|
||||
else {
|
||||
|
|
@ -68,4 +68,4 @@
|
|||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ function loadStationInfo() {
|
|||
success: function (data) {
|
||||
if (data.count > 0) {
|
||||
$(".resulttable").append('<br />' + data.count + ' Qsos logged between ' + data.mindate + ' and ' + data.maxdate + '.<br /><br />');
|
||||
$(".resulttable").append('<form class="form-inline" onsubmit="return false;"><label class="my-1 mr-2" for="oqrssearch">Enter your callsign: </label><input class="form-control mr-sm-2" id="oqrssearch" type="search" name="callsign" placeholder="Search Callsign" aria-label="Search" required="required"><button onclick="searchOqrs();" class="btn btn-sm btn-primary" id="stationbuttonsubmit" type="button"><i class="fas fa-search"></i> Search</button></form>');
|
||||
$(".resulttable").append('<form class="form-inline" onsubmit="return false;"><label class="my-1 mr-2" for="oqrssearch">Enter your callsign: </label><input class="form-control mr-sm-2 w-auto" id="oqrssearch" type="search" name="callsign" placeholder="Search Callsign" aria-label="Search" required="required"><button onclick="searchOqrs();" class="btn btn-sm btn-primary" id="stationbuttonsubmit" type="button"><i class="fas fa-search"></i> Search</button></form>');
|
||||
// Get the input field
|
||||
var input = document.getElementById("oqrssearch");
|
||||
|
||||
|
|
|
|||
正在加载…
在新工单中引用