| 
									
										
										
										
											2022-09-07 02:18:17 +08:00
										 |  |  | <div class="container" id="edit_band_dialog"> | 
					
						
							|  |  |  | 	<form> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<input type="hidden" name="id" value="<?php echo $my_band->id; ?>"> | 
					
						
							|  |  |  | 		<div class="form-group"> | 
					
						
							| 
									
										
										
										
											2022-09-10 00:52:57 +08:00
										 |  |  | 			<label for="bandInput">Band</label> | 
					
						
							| 
									
										
										
										
											2022-09-07 02:18:17 +08:00
										 |  |  | 			<input type="text" class="form-control" name="band" id="bandInput" aria-describedby="bandInputHelp" value="<?php if(set_value('band') != "") { echo set_value('band'); } else { echo $my_band->band; } ?>" required> | 
					
						
							|  |  |  | 			<small id="bandInputHelp" class="form-text text-muted">Name of band</small> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2022-09-10 00:52:57 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label for="bandGroup">Bandgroup</label> | 
					
						
							|  |  |  | 			<input type="text" class="form-control" name="bandgroup" id="bandGroup" aria-describedby="bandgroupInputHelp" value="<?php if(set_value('bandgroup') != "") { echo set_value('bandgroup'); } else { echo $my_band->bandgroup; } ?>" required> | 
					
						
							|  |  |  | 			<small id="bandgroupInputHelp" class="form-text text-muted">Name of bandgroup (E.g. hf, vhf, uhf, shf)</small> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label for="ssbqrg">SSB QRG</label> | 
					
						
							|  |  |  | 			<input type="text" class="form-control" name="ssbqrg" id="ssbqrg" aria-describedby="ssbqrgInputHelp" value="<?php echo $my_band->ssb; ?>" required> | 
					
						
							|  |  |  | 			<small id="ssbqrgInputHelp" class="form-text text-muted">Frequency for SSB QRG in band (must be in Hz)</small> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label for="dataqrg">DATA QRG</label> | 
					
						
							|  |  |  | 			<input type="text" class="form-control" name="dataqrg" id="dataqrg" aria-describedby="dataqrgInputHelp" value="<?php echo $my_band->data; ?>" required> | 
					
						
							|  |  |  | 			<small id="dataqrgInputHelp" class="form-text text-muted">Frequency for DATA QRG in band (must be in Hz)</small> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label for="cwqrg">CW QRG</label> | 
					
						
							|  |  |  | 			<input type="text" class="form-control" name="cwqrg" id="cwqrg" aria-describedby="cwqrgInputHelp" value="<?php echo $my_band->cw; ?>" required> | 
					
						
							|  |  |  | 			<small id="cwqrgInputHelp" class="form-text text-muted">Frequency for CW QRG in band (must be in Hz)</small> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2022-09-07 02:18:17 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		<button type="button" onclick="saveUpdatedBand(this.form);" class="btn btn-primary"><i class="fas fa-plus-square"></i> Update band</button> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	</form> | 
					
						
							|  |  |  | </div> |