| 
									
										
										
										
											2022-11-16 01:29:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <?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" placeholder="YYYY-MM-DD"></td>'; | 
					
						
							| 
									
										
										
										
											2022-12-31 06:16:38 +08:00
										 |  |  |                     echo '<td><input class="form-control qsotime" type="text" name="time" value="" id="time" maxlength="5" placeholder="HH:MM"></td>'; | 
					
						
							| 
									
										
										
										
											2022-11-16 01:29:33 +08:00
										 |  |  |                     echo '<td id="band">'. $qso->col_band .'</td>'; | 
					
						
							| 
									
										
										
										
											2023-04-26 12:15:24 +08:00
										 |  |  |                     echo '<td id="mode">'; echo $qso->col_submode == null ? strtoupper($qso->col_mode) : strtoupper($qso->col_submode);  echo '</td>'; | 
					
						
							| 
									
										
										
										
											2022-11-16 01:29:33 +08:00
										 |  |  |                 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"> | 
					
						
							| 
									
										
										
										
											2022-12-24 05:58:03 +08:00
										 |  |  |         <input class="form-check-input" type="radio" name="qslroute" id="bureau" value="B" checked/> | 
					
						
							| 
									
										
										
										
											2022-11-16 01:29:33 +08:00
										 |  |  |         <label class="form-check-label" for="bureau">Bureau</label> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="form-check form-check-inline"> | 
					
						
							| 
									
										
										
										
											2022-12-24 05:58:03 +08:00
										 |  |  |         <input class="form-check-input" type="radio" name="qslroute" id="direct" value="D" /> | 
					
						
							| 
									
										
										
										
											2022-11-16 01:29:33 +08:00
										 |  |  |         <label class="form-check-label" for="direct">Direct (write address in message below)</label> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |     <br /><br /> | 
					
						
							|  |  |  |     <div class="form-group"> | 
					
						
							|  |  |  |         <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="form-group"> | 
					
						
							|  |  |  |         <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" onclick="submitOqrsRequest(this.form);" class="btn btn-sm btn-primary"><i | 
					
						
							|  |  |  |             class="fas fa-plus-square"></i> Submit request</button> | 
					
						
							| 
									
										
										
										
											2023-04-26 12:15:24 +08:00
										 |  |  | </form> |