Files
wavelog/application/views/oqrs/request.php
2024-06-07 22:40:11 +02:00

68 lines
2.9 KiB
PHP

<?php if ($qslinfo != '') {
echo '<br />QSL information <br /><br />';
echo $qslinfo;
echo '<br />';
}
?>
<br />
<?= __("The following QSO(s) were found. Please fill out the date and time and submit your request."); ?>
<table style="width:100%"
class="result-table table-sm table table-bordered table-hover table-striped table-condensed text-center">
<thead>
<tr>
<th>#</th>
<th><?= __("Date"); ?></th>
<th><?= __("Time (UTC)"); ?></th>
<th class="center"><span class="larger_font band"><?= __("Band"); ?></th>
<th class="center"><?= __("Mode"); ?></th>
</tr>
</thead>
<tbody>
<?php
$i = 1;
foreach ($result as $qso) {
echo '<tr>';
echo '<td>'. $i++ .'</td>';
echo '<td><input class="form-control" type="date" name="date" value="" id="date"></td>';
echo '<td><input class="form-control qsotime" type="text" name="time" value="" id="time" maxlength="5" placeholder="hh:mm"></td>';
echo '<td id="band">'. $qso->col_band .'</td>';
echo '<td id="mode">'; echo $qso->col_submode == null ? strtoupper($qso->col_mode) : strtoupper($qso->col_submode); echo '</td>';
echo '</tr>';
}
?>
</tbody>
</table>
<br />
<form>
<div class="form-check form-check-inline">
<label class="form-check-label"><?= __("QSL Route"); ?></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="qslroute" id="bureau" value="B" checked/>
<label class="form-check-label" for="bureau"><?= __("Bureau"); ?></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="qslroute" id="direct" value="D" />
<label class="form-check-label" for="direct"><?= __("Direct (write address in message below)"); ?></label>
</div>
<br /><br />
<div class="mb-3">
<label for="message"><?= __("Message"); ?></label>
<textarea name="message" class="form-control" id="messageInput" rows="3" aria-describedby="messageHelp"></textarea>
<small id="messageHelp" class="form-text text-muted"><?= __("Any extra information we need to know about?"); ?></small>
</div>
<div class="mb-3">
<label for="emailInput"><?= __("E-mail"); ?></label>
<input type="text" class="form-control" name="mode" id="emailInput" aria-describedby="emailInputHelp" required>
<small id="emailInputHelp" class="form-text text-muted"><?= __("Your e-mail address where we can contact you"); ?></small>
</div>
<button type="button" id="requestSubmit" onclick="submitOqrsRequest(this.form);" class="btn btn-sm btn-primary"><i
class="fas fa-plus-square"></i> <?= __("Submit request"); ?></button>
</form>