| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | <div class="container" id="create_station_profile"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <br> | 
					
						
							|  |  |  | 	<?php if($this->session->flashdata('message')) { ?>
 | 
					
						
							|  |  |  | 		<!-- Display Message --> | 
					
						
							|  |  |  | 		<div class="alert-message error"> | 
					
						
							|  |  |  | 		  <p><?php echo $this->session->flashdata('message'); ?></p>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	<?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<?php if($this->session->flashdata('notice')) { ?>
 | 
					
						
							|  |  |  | 		<div id="message" > | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 			<?php echo $this->session->flashdata('notice'); ?>
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		</div> | 
					
						
							|  |  |  | 	<?php } ?>
 | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<?php $this->load->helper('form'); ?>
 | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<?php echo validation_errors(); ?>
 | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 14:16:44 +08:00
										 |  |  | 	<?php if($my_station_profile->station_id != NULL) { | 
					
						
							|  |  |  | 		$form_action = "Update"; | 
					
						
							|  |  |  | 	?>
 | 
					
						
							|  |  |  | 		<form method="post" action="<?php echo site_url('station/edit/'); ?><?php echo $my_station_profile->station_id; ?>" name="create_profile"> | 
					
						
							|  |  |  | 			<input type="hidden" name="station_id" value="<?php echo $my_station_profile->station_id; ?>"> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 14:16:44 +08:00
										 |  |  | 	<?php } else { | 
					
						
							|  |  |  | 		$form_action = "Create"; | 
					
						
							|  |  |  | 	?>
 | 
					
						
							|  |  |  | 		<form method="post" action="<?php echo site_url('station/copy/'); ?><?php echo $copy_from; ?>" name="create_profile"> | 
					
						
							|  |  |  | 	<?php } ?>
 | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							| 
									
										
										
										
											2022-08-17 14:16:44 +08:00
										 |  |  | 				<div class="card-header"><?php echo $page_title; ?> (Callsign: <?php echo $my_station_profile->station_callsign; ?>)</div>
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 				<div class="card-body"> | 
					
						
							| 
									
										
										
										
											2022-08-17 14:16:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationNameInput">Station Name</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="station_profile_name" id="stationNameInput" aria-describedby="stationNameInputHelp" value="<?php if(set_value('station_profile_name') != "") { echo set_value('station_profile_name'); } else { echo $my_station_profile->station_profile_name; } ?>" required> | 
					
						
							|  |  |  | 						<small id="stationNameInputHelp" class="form-text text-muted">Shortname for the station location. For example: Home (IO87IP)</small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							| 
									
										
										
										
											2020-04-09 00:00:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationCallsignInput">Station Callsign</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="station_callsign" id="stationCallsignInput" aria-describedby="stationCallsignInputHelp" value="<?php if(set_value('station_callsign') != "") { echo set_value('station_callsign'); } else { echo $my_station_profile->station_callsign; } ?>" required> | 
					
						
							|  |  |  | 						<small id="stationCallsignInputHelp" class="form-text text-muted">Station callsign. For example: 2M0SQL/P</small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							| 
									
										
										
										
											2023-04-28 05:02:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationPowerInput">Station Power</label> | 
					
						
							|  |  |  | 						<input type="number" class="form-control" name="station_power" step="1" id="stationPowerInput" aria-describedby="stationPowerInputHelp" value="<?php if(set_value('station_power') != "") { echo set_value('station_power'); } else { echo $my_station_profile->station_power; } ?>"> | 
					
						
							|  |  |  | 						<small id="stationPowerInputHelp" class="form-text text-muted">Default station power. Overwritten by CAT.</small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<!-- Location Ends --> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<div class="card-header">Location</div> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<!-- DXCC --> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationDXCCInput">Station DXCC</label> | 
					
						
							|  |  |  | 							<?php if ($dxcc_list->num_rows() > 0) { ?>
 | 
					
						
							|  |  |  | 							<select class="form-control" id="dxcc_select" name="dxcc" aria-describedby="stationCallsignInputHelp"> | 
					
						
							| 
									
										
										
										
											2023-04-30 00:57:35 +08:00
										 |  |  | 							<option value="0" <?php if($my_station_profile->station_dxcc == "0") { ?>selected<?php } ?>>- NONE -</option>
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 							<?php foreach ($dxcc_list->result() as $dxcc) { ?>
 | 
					
						
							| 
									
										
										
										
											2023-05-14 19:54:10 +08:00
										 |  |  | 							<option value="<?php echo $dxcc->adif; ?>" <?php if($my_station_profile->station_dxcc == $dxcc->adif) { ?>selected<?php } ?>><?php echo ucwords(strtolower($dxcc->name)) . ' - ' . $dxcc->prefix; if ($dxcc->end != NULL) echo ' ('.lang('gen_hamradio_deleted_dxcc').')';?>
 | 
					
						
							| 
									
										
										
										
											2023-04-27 04:39:09 +08:00
										 |  |  | 							</option> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 							<?php } ?>
 | 
					
						
							|  |  |  | 							</select> | 
					
						
							|  |  |  | 							<?php } ?>
 | 
					
						
							|  |  |  | 						<small id="stationDXCCInputHelp" class="form-text text-muted">Station DXCC entity. For example: Scotland</small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							| 
									
										
										
										
											2020-08-29 18:57:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					<!-- City --> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationCityInput">Station City</label> | 
					
						
							| 
									
										
										
										
											2022-08-18 04:07:58 +08:00
										 |  |  | 						<input type="text" class="form-control" name="city" id="stationCityInput" aria-describedby="stationCityInputHelp" value="<?php if(set_value('city') != "") { echo set_value('city'); } else { echo $my_station_profile->station_city; } ?>"> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		    			<small id="stationCityInputHelp" class="form-text text-muted">Station city. For example: Inverness</small> | 
					
						
							|  |  |  | 		  			</div> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					<!-- US State --> | 
					
						
							| 
									
										
										
										
											2023-06-15 20:14:10 +08:00
										 |  |  | 					<div class="form-group" id="us_state"> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		    			<label for="stateInput">Station State</label> | 
					
						
							|  |  |  | 		    				<select class="form-control custom-select" name="station_state" id="StateHelp" aria-describedby="stationCntyInputHelp"> | 
					
						
							|  |  |  | 								<option value=""></option> | 
					
						
							|  |  |  | 								<option value="AK" <?php if($my_station_profile->state == "AK") { echo "selected"; } ?>>Alaska</option>
 | 
					
						
							|  |  |  | 								<option value="AL" <?php if($my_station_profile->state == "AL") { echo "selected"; } ?>>Alabama</option>
 | 
					
						
							|  |  |  | 								<option value="AR" <?php if($my_station_profile->state == "AR") { echo "selected"; } ?>>Arkansas</option>
 | 
					
						
							|  |  |  | 								<option value="AZ" <?php if($my_station_profile->state == "AZ") { echo "selected"; } ?>>Arizona</option>
 | 
					
						
							|  |  |  | 								<option value="CA" <?php if($my_station_profile->state == "CA") { echo "selected"; } ?>>California</option>
 | 
					
						
							|  |  |  | 								<option value="CO" <?php if($my_station_profile->state == "CO") { echo "selected"; } ?>>Colorado</option>
 | 
					
						
							|  |  |  | 								<option value="CT" <?php if($my_station_profile->state == "CT") { echo "selected"; } ?>>Connecticut</option>
 | 
					
						
							|  |  |  | 								<option value="DE" <?php if($my_station_profile->state == "DE") { echo "selected"; } ?>>Delaware</option>
 | 
					
						
							| 
									
										
										
										
											2021-07-14 10:25:02 +08:00
										 |  |  | 								<option value="DC" <?php if($my_station_profile->state == "DC") { echo "selected"; } ?>>District of Columbia</option>
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 								<option value="FL" <?php if($my_station_profile->state == "FL") { echo "selected"; } ?>>Florida</option>
 | 
					
						
							|  |  |  | 								<option value="GA" <?php if($my_station_profile->state == "GA") { echo "selected"; } ?>>Georgia</option>
 | 
					
						
							|  |  |  | 								<option value="HI" <?php if($my_station_profile->state == "HI") { echo "selected"; } ?>>Hawaii</option>
 | 
					
						
							|  |  |  | 								<option value="IA" <?php if($my_station_profile->state == "IA") { echo "selected"; } ?>>Iowa</option>
 | 
					
						
							|  |  |  | 								<option value="ID" <?php if($my_station_profile->state == "ID") { echo "selected"; } ?>>Idaho</option>
 | 
					
						
							|  |  |  | 								<option value="IL" <?php if($my_station_profile->state == "IL") { echo "selected"; } ?>>Illinois</option>
 | 
					
						
							|  |  |  | 								<option value="IN" <?php if($my_station_profile->state == "IN") { echo "selected"; } ?>>Indiana</option>
 | 
					
						
							|  |  |  | 								<option value="KS" <?php if($my_station_profile->state == "KS") { echo "selected"; } ?>>Kansas</option>
 | 
					
						
							|  |  |  | 								<option value="KY" <?php if($my_station_profile->state == "KY") { echo "selected"; } ?>>Kentucky</option>
 | 
					
						
							|  |  |  | 								<option value="LA" <?php if($my_station_profile->state == "LA") { echo "selected"; } ?>>Louisiana</option>
 | 
					
						
							|  |  |  | 								<option value="MA" <?php if($my_station_profile->state == "MA") { echo "selected"; } ?>>Massachusetts</option>
 | 
					
						
							|  |  |  | 								<option value="MD" <?php if($my_station_profile->state == "MD") { echo "selected"; } ?>>Maryland</option>
 | 
					
						
							|  |  |  | 								<option value="ME" <?php if($my_station_profile->state == "ME") { echo "selected"; } ?>>Maine</option>
 | 
					
						
							|  |  |  | 								<option value="MI" <?php if($my_station_profile->state == "MI") { echo "selected"; } ?>>Michigan</option>
 | 
					
						
							|  |  |  | 								<option value="MN" <?php if($my_station_profile->state == "MN") { echo "selected"; } ?>>Minnesota</option>
 | 
					
						
							|  |  |  | 								<option value="MO" <?php if($my_station_profile->state == "MO") { echo "selected"; } ?>>Missouri</option>
 | 
					
						
							|  |  |  | 								<option value="MS" <?php if($my_station_profile->state == "MS") { echo "selected"; } ?>>Mississippi</option>
 | 
					
						
							|  |  |  | 								<option value="MT" <?php if($my_station_profile->state == "MT") { echo "selected"; } ?>>Montana</option>
 | 
					
						
							|  |  |  | 								<option value="NC" <?php if($my_station_profile->state == "NC") { echo "selected"; } ?>>North Carolina</option>
 | 
					
						
							|  |  |  | 								<option value="ND" <?php if($my_station_profile->state == "ND") { echo "selected"; } ?>>North Dakota</option>
 | 
					
						
							|  |  |  | 								<option value="NE" <?php if($my_station_profile->state == "NE") { echo "selected"; } ?>>Nebraska</option>
 | 
					
						
							|  |  |  | 								<option value="NH" <?php if($my_station_profile->state == "NH") { echo "selected"; } ?>>New Hampshire</option>
 | 
					
						
							|  |  |  | 								<option value="NJ" <?php if($my_station_profile->state == "NJ") { echo "selected"; } ?>>New Jersey</option>
 | 
					
						
							|  |  |  | 								<option value="NM" <?php if($my_station_profile->state == "NM") { echo "selected"; } ?>>New Mexico</option>
 | 
					
						
							|  |  |  | 								<option value="NV" <?php if($my_station_profile->state == "NV") { echo "selected"; } ?>>Nevada</option>
 | 
					
						
							|  |  |  | 								<option value="NY" <?php if($my_station_profile->state == "NY") { echo "selected"; } ?>>New York</option>
 | 
					
						
							|  |  |  | 								<option value="OH" <?php if($my_station_profile->state == "OH") { echo "selected"; } ?>>Ohio</option>
 | 
					
						
							|  |  |  | 								<option value="OK" <?php if($my_station_profile->state == "OK") { echo "selected"; } ?>>Oklahoma</option>
 | 
					
						
							|  |  |  | 								<option value="OR" <?php if($my_station_profile->state == "OR") { echo "selected"; } ?>>Oregon</option>
 | 
					
						
							|  |  |  | 								<option value="PA" <?php if($my_station_profile->state == "PA") { echo "selected"; } ?>>Pennsylvania</option>
 | 
					
						
							|  |  |  | 								<option value="RI" <?php if($my_station_profile->state == "RI") { echo "selected"; } ?>>Rhode Island</option>
 | 
					
						
							|  |  |  | 								<option value="SC" <?php if($my_station_profile->state == "SC") { echo "selected"; } ?>>South Carolina</option>
 | 
					
						
							|  |  |  | 								<option value="SD" <?php if($my_station_profile->state == "SD") { echo "selected"; } ?>>South Dakota</option>
 | 
					
						
							|  |  |  | 								<option value="TN" <?php if($my_station_profile->state == "TN") { echo "selected"; } ?>>Tennessee</option>
 | 
					
						
							|  |  |  | 								<option value="TX" <?php if($my_station_profile->state == "TX") { echo "selected"; } ?>>Texas</option>
 | 
					
						
							|  |  |  | 								<option value="UT" <?php if($my_station_profile->state == "UT") { echo "selected"; } ?>>Utah</option>
 | 
					
						
							|  |  |  | 								<option value="VA" <?php if($my_station_profile->state == "VA") { echo "selected"; } ?>>Virginia</option>
 | 
					
						
							|  |  |  | 								<option value="VT" <?php if($my_station_profile->state == "VT") { echo "selected"; } ?>>Vermont</option>
 | 
					
						
							|  |  |  | 								<option value="WA" <?php if($my_station_profile->state == "WA") { echo "selected"; } ?>>Washington</option>
 | 
					
						
							|  |  |  | 								<option value="WI" <?php if($my_station_profile->state == "WI") { echo "selected"; } ?>>Wisconsin</option>
 | 
					
						
							|  |  |  | 								<option value="WV" <?php if($my_station_profile->state == "WV") { echo "selected"; } ?>>West Virginia</option>
 | 
					
						
							|  |  |  | 								<option value="WY" <?php if($my_station_profile->state == "WY") { echo "selected"; } ?>>Wyoming</option>
 | 
					
						
							| 
									
										
										
										
											2023-06-15 20:14:10 +08:00
										 |  |  | 							</select> | 
					
						
							|  |  |  | 		    				<small id="StateHelp" class="form-text text-muted">Station state. Applies to certain countries only. Leave blank if not applicable.</small> | 
					
						
							|  |  |  | 		 				</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					<!-- Canada State --> | 
					
						
							|  |  |  | 					<div class="form-group" id="canada_state"> | 
					
						
							|  |  |  | 		    			<label for="stateInput">Canadian Province</label> | 
					
						
							|  |  |  | 		    				<select class="form-control custom-select" name="station_ca_state" id="StateHelp" aria-describedby="stationCntyInputHelp"> | 
					
						
							|  |  |  | 								<option value=""></option> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 								<option value="AB" <?php if($my_station_profile->state == "AB") { echo "selected"; } ?>>Alberta</option>
 | 
					
						
							|  |  |  | 								<option value="BC" <?php if($my_station_profile->state == "BC") { echo "selected"; } ?>>British Columbia</option>
 | 
					
						
							|  |  |  | 								<option value="MB" <?php if($my_station_profile->state == "MB") { echo "selected"; } ?>>Manitoba</option>
 | 
					
						
							|  |  |  | 								<option value="NB" <?php if($my_station_profile->state == "NB") { echo "selected"; } ?>>New Brunswick</option>
 | 
					
						
							|  |  |  | 								<option value="NL" <?php if($my_station_profile->state == "NL") { echo "selected"; } ?>>Newfoundland & Labrador</option>
 | 
					
						
							|  |  |  | 								<option value="NS" <?php if($my_station_profile->state == "NS") { echo "selected"; } ?>>Nova Scotia</option>
 | 
					
						
							|  |  |  | 								<option value="NT" <?php if($my_station_profile->state == "NT") { echo "selected"; } ?>>Northwest Territories</option>
 | 
					
						
							|  |  |  | 								<option value="NU" <?php if($my_station_profile->state == "NU") { echo "selected"; } ?>>Nunavut</option>
 | 
					
						
							|  |  |  | 								<option value="ON" <?php if($my_station_profile->state == "ON") { echo "selected"; } ?>>Ontario</option>
 | 
					
						
							|  |  |  | 								<option value="PE" <?php if($my_station_profile->state == "PE") { echo "selected"; } ?>>Prince Edward Island</option>
 | 
					
						
							|  |  |  | 								<option value="QC" <?php if($my_station_profile->state == "QC") { echo "selected"; } ?>>Quebec</option>
 | 
					
						
							|  |  |  | 								<option value="SK" <?php if($my_station_profile->state == "SK") { echo "selected"; } ?>>Saskatchewan</option>
 | 
					
						
							|  |  |  | 								<option value="YT" <?php if($my_station_profile->state == "YT") { echo "selected"; } ?>>Yukon</option>
 | 
					
						
							|  |  |  | 							</select> | 
					
						
							|  |  |  | 		    				<small id="StateHelp" class="form-text text-muted">Station state. Applies to certain countries only. Leave blank if not applicable.</small> | 
					
						
							| 
									
										
										
										
											2023-06-15 20:14:10 +08:00
										 |  |  | 						</div> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 						<!-- US County --> | 
					
						
							|  |  |  | 						<div class="form-group"> | 
					
						
							|  |  |  | 							<label for="stationCntyInput">Station County</label> | 
					
						
							|  |  |  | 							<input disabled="disabled" type="text" class="form-control" name="station_cnty" id="stationCntyInput" aria-describedby="stationCntyInputHelp" value="<?php if(set_value('station_cnty') != "") { echo set_value('station_cnty'); } else { echo $my_station_profile->station_cnty; } ?>"> | 
					
						
							|  |  |  | 							<small id="stationCntyInputHelp" class="form-text text-muted">Station County (Only used for USA/Alaska/Hawaii)</small> | 
					
						
							|  |  |  | 		  				</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 		<!-- Location Ends --> | 
					
						
							| 
									
										
										
										
											2020-10-07 05:47:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		<!-- Zones --> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<div class="card-header">Zones</div> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<!-- CQ Zone --> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationCQZoneInput">CQ Zone</label> | 
					
						
							|  |  |  | 						<select class="custom-select" id="stationCQZoneInput" name="station_cq" required> | 
					
						
							|  |  |  | 							<?php | 
					
						
							|  |  |  | 							for ($i = 1; $i<=40; $i++) { | 
					
						
							|  |  |  | 								echo '<option value='. $i; | 
					
						
							|  |  |  | 								if ($my_station_profile->station_cq == $i) { | 
					
						
							|  |  |  | 									echo " selected=\"selected\""; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 								echo '>'. $i .'</option>'; | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							?>
 | 
					
						
							|  |  |  | 						</select> | 
					
						
							| 
									
										
										
										
											2023-04-20 21:06:46 +08:00
										 |  |  | 						<small id="stationCQInputHelp" class="form-text text-muted">If you don't know your CQ Zone then <a href="https://zone-check.eu/?m=cq" target="_blank">click here</a> to find it!</small> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					</div> | 
					
						
							| 
									
										
										
										
											2020-10-07 05:47:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					<!-- ITU Zone --> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  |                     	<label for="stationITUZoneInput">ITU Zone</label> | 
					
						
							|  |  |  |                     	<select class="custom-select" id="stationITUZoneInput" name="station_itu" required> | 
					
						
							|  |  |  | 							<?php | 
					
						
							|  |  |  | 							for ($i = 1; $i<=90; $i++) { | 
					
						
							|  |  |  | 								echo '<option value='. $i; | 
					
						
							|  |  |  | 								if ($my_station_profile->station_itu == $i) { | 
					
						
							|  |  |  | 									echo " selected=\"selected\""; | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 								echo '>'. $i .'</option>'; | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							?>
 | 
					
						
							|  |  |  |                     	</select> | 
					
						
							| 
									
										
										
										
											2023-04-20 21:06:46 +08:00
										 |  |  |                     	<small id="stationITUInputHelp" class="form-text text-muted">If you don't know your ITU Zone then <a href="https://zone-check.eu/?m=itu" target="_blank">click here</a> to find it!</small> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  |                 	</div> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 		<!-- Zones End --> | 
					
						
							|  |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">Gridsquare</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 		    			<label for="stationGridsquareInput">Gridsquare</label> | 
					
						
							| 
									
										
										
										
											2022-04-14 23:07:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						<div class="input-group mb-3"> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="gridsquare" id="stationGridsquareInput" aria-describedby="stationGridInputHelp" value="<?php if(set_value('gridsquare') != "") { echo set_value('gridsquare'); } else { echo $my_station_profile->station_gridsquare; } ?>" required> | 
					
						
							|  |  |  | 							<div class="input-group-append"> | 
					
						
							| 
									
										
										
										
											2022-04-14 23:09:40 +08:00
										 |  |  | 								<button type="button" class="btn btn-outline-secondary" onclick="getLocation()"><i class="fas fa-compass"></i> Get Gridsquare</button> | 
					
						
							| 
									
										
										
										
											2022-04-14 23:07:10 +08:00
										 |  |  | 							</div> | 
					
						
							|  |  |  | 						</div> | 
					
						
							| 
									
										
										
										
											2022-04-14 23:09:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-20 21:06:46 +08:00
										 |  |  | 		    			<small id="stationGridInputHelp" class="form-text text-muted">Station grid square. For example: IO87IP. If you don't know your grid square then <a href="https://zone-check.eu/?m=loc" target="_blank">click here</a>!</small> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		    			<small id="stationGridInputHelp" class="form-text text-muted">If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88.</small> | 
					
						
							|  |  |  | 		  			</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2020-11-08 21:18:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">IOTA Reference</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  |                 		<label for="stationIOTAInput">IOTA Reference</label> | 
					
						
							|  |  |  |                 		<select class="custom-select" name="iota" id="stationIOTAInput" aria-describedby="stationIOTAInputHelp" placeholder="EU-005"> | 
					
						
							|  |  |  |                     		<option value =""></option> | 
					
						
							|  |  |  |                     		<?php | 
					
						
							|  |  |  |                     			foreach($iota_list as $i){ | 
					
						
							|  |  |  |                         		echo '<option value=' . $i->tag; | 
					
						
							|  |  |  | 		                        if ($my_station_profile->station_iota == $i->tag) { | 
					
						
							|  |  |  |         		                    echo " selected =\"selected\""; | 
					
						
							|  |  |  |                 		        } | 
					
						
							|  |  |  |                         		echo '>' . $i->tag . ' - ' . $i->name . '</option>'; | 
					
						
							|  |  |  |                     			} | 
					
						
							|  |  |  |                     		?>
 | 
					
						
							|  |  |  |                 		</select> | 
					
						
							| 
									
										
										
										
											2022-08-17 14:16:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 						<small id="stationIOTAInputHelp" class="form-text text-muted">Station IOTA reference. For example: EU-005</small> | 
					
						
							|  |  |  |                 		<small id="stationIOTAInputHelp" class="form-text text-muted">You can look up IOTA references at the <a target="_blank" href="https://www.iota-world.org/iota-directory/annex-f-short-title-iota-reference-number-list.html">IOTA World</a> website.</small> | 
					
						
							|  |  |  |             		</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2020-11-08 21:18:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">SOTA</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 		    			<label for="stationSOTAInput">SOTA Reference</label> | 
					
						
							|  |  |  | 		    			<input type="text" class="form-control" name="sota" id="stationSOTAInput" aria-describedby="stationSOTAInputHelp" value="<?php if(set_value('sota') != "") { echo set_value('sota'); } else { echo $my_station_profile->station_sota; } ?>"> | 
					
						
							| 
									
										
										
										
											2023-04-28 17:55:21 +08:00
										 |  |  | 		    			<small id="stationSOTAInputHelp" class="form-text text-muted">Station SOTA reference. You can look up SOTA references at the <a target="_blank" href="https://www.sotamaps.org/">SOTA Maps</a> website.</small> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		  			</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 20:33:15 +08:00
										 |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">WWFF</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationWWFFInput">WWFF Reference</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="wwff" id="stationWWFFInput" aria-describedby="stationWWFFInputHelp" value="<?php if(set_value('wwff') != "") { echo set_value('wwff'); } else { echo $my_station_profile->station_wwff; } ?>"> | 
					
						
							| 
									
										
										
										
											2023-04-28 17:55:21 +08:00
										 |  |  | 						<small id="stationWWFFInputHelp" class="form-text text-muted">Station WWFF reference. You can look up WWFF references at the <a target="_blank" href="https://www.cqgma.org/mvs/">GMA Map</a> website.</small> | 
					
						
							| 
									
										
										
										
											2022-08-17 20:33:15 +08:00
										 |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-05 23:05:53 +08:00
										 |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">POTA</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="stationPOTAInput">POTA Reference</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="pota" id="stationPOTAInput" aria-describedby="stationPOTAInputHelp" value="<?php if(set_value('pota') != "") { echo set_value('pota'); } else { echo $my_station_profile->station_pota; } ?>"> | 
					
						
							| 
									
										
										
										
											2023-04-28 17:55:21 +08:00
										 |  |  | 						<small id="stationPOTAInputHelp" class="form-text text-muted">Station POTA reference. You can look up POTA references at the <a target="_blank" href="https://pota.app/#/map/">POTA Map</a> website.</small> | 
					
						
							| 
									
										
										
										
											2022-10-05 23:05:53 +08:00
										 |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2022-08-17 20:33:15 +08:00
										 |  |  | 	</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<div class="row"> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">Signature</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 		    			<label for="stationSigInput">Signature</label> | 
					
						
							|  |  |  | 		    			<input type="text" class="form-control" name="sig" id="stationSigInput" aria-describedby="stationSigInputHelp" value="<?php if(set_value('sig') != "") { echo set_value('sig'); } else { echo $my_station_profile->station_sig; } ?>"> | 
					
						
							| 
									
										
										
										
											2022-10-05 23:05:53 +08:00
										 |  |  | 		    			<small id="stationSigInputHelp" class="form-text text-muted">Station Signature (e.g. GMA)..</small> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					</div> | 
					
						
							| 
									
										
										
										
											2021-01-28 03:17:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 		    			<label for="stationSigInfoInput">Signature Information</label> | 
					
						
							|  |  |  | 		    			<input type="text" class="form-control" name="sig_info" id="stationSigInfoInput" aria-describedby="stationSigInfoInputHelp" value="<?php if(set_value('sig_info') != "") { echo set_value('sig_info'); } else { echo $my_station_profile->station_sig_info; } ?>"> | 
					
						
							| 
									
										
										
										
											2022-10-05 23:05:53 +08:00
										 |  |  | 		    			<small id="stationSigInfoInputHelp" class="form-text text-muted">Station Signature Info (e.g. DA/NW-357).</small> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							| 
									
										
										
										
											2021-01-28 03:17:14 +08:00
										 |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		</div> | 
					
						
							|  |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2021-01-28 03:17:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">eQSL</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 		    			<label for="eqslNickname">eQSL QTH Nickname</label> | 
					
						
							|  |  |  | 		    			<input type="text" class="form-control" name="eqslnickname" id="eqslNickname" aria-describedby="eqslhelp" value="<?php if(set_value('eqslnickname') != "") { echo set_value('eqslnickname'); } else { echo $my_station_profile->eqslqthnickname; } ?>"> | 
					
						
							|  |  |  | 		    			<small id="eqslhelp" class="form-text text-muted">eQSL QTH Nickname.</small> | 
					
						
							|  |  |  | 		  			</div> | 
					
						
							| 
									
										
										
										
											2021-01-28 03:17:14 +08:00
										 |  |  | 				</div> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2021-01-28 03:17:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">QRZ <span class="badge badge-warning">Subscription Required</span></h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="qrzApiKey">QRZ.com Logbook API Key</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="qrzapikey" id="qrzApiKey" aria-describedby="qrzApiKeyHelp" value="<?php if(set_value('qrzapikey') != "") { echo set_value('qrzapikey'); } else { echo $my_station_profile->qrzapikey; } ?>"> | 
					
						
							|  |  |  | 						<small id="qrzApiKeyHelp" class="form-text text-muted">Find your API key on <a href="https://logbook.qrz.com/logbook" target="_blank">QRZ.com's settings page</a></small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							| 
									
										
										
										
											2020-05-07 23:35:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="qrzrealtime">QRZ.com Logbook Realtime Upload</label> | 
					
						
							|  |  |  | 						<select class="custom-select" id="qrzrealtime" name="qrzrealtime"> | 
					
						
							|  |  |  | 							<option value="1" <?php if ($my_station_profile->qrzrealtime == 1) { echo " selected =\"selected\""; } ?>>Yes</option>
 | 
					
						
							|  |  |  | 							<option value="0" <?php if ($my_station_profile->qrzrealtime == 0) { echo " selected =\"selected\""; } ?>>No</option>
 | 
					
						
							|  |  |  | 						</select> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2022-11-16 01:29:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2023-07-07 19:33:15 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">HRDLog.net</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="webadifApiKey">HRDLog.net API Code</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="hrdlog_code" id="hrdlog_code" aria-describedby="hrdlog_codeHelp" value="<?php if(set_value('hrdlog_code') != "") { echo set_value('hrdlog_code'); } else { echo $my_station_profile->hrdlog_code; } ?>"> | 
					
						
							|  |  |  | 						<small id="hrdlog_codeHelp" class="form-text text-muted">Create your API Code on <a href="http://www.hrdlog.net/EditUser.aspx" target="_blank">HRDLog.net Userprofile page</a></small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="hrdlogrealtime">HRDLog.net Realtime Upload</label> | 
					
						
							|  |  |  | 						<select class="custom-select" id="hrdlogrealtime" name="hrdlogrealtime"> | 
					
						
							|  |  |  | 							<option value="1" <?php if ($my_station_profile->hrdlogrealtime == 1) { echo " selected =\"selected\""; } ?>>Yes</option>
 | 
					
						
							|  |  |  | 							<option value="0" <?php if ($my_station_profile->hrdlogrealtime == 0) { echo " selected =\"selected\""; } ?>>No</option>
 | 
					
						
							|  |  |  | 						</select> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2023-03-17 02:58:48 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">QO-100 Dx Club</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="webadifApiKey">QO-100 Dx Club API Key</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="webadifapikey" id="webadifApiKey" aria-describedby="webadifApiKeyHelp" value="<?php if(set_value('webadifapikey') != "") { echo set_value('webadifapikey'); } else { echo $my_station_profile->webadifapikey; } ?>"> | 
					
						
							|  |  |  | 						<small id="webadifApiKeyHelp" class="form-text text-muted">Create your API key on <a href="https://qo100dx.club" target="_blank">your QO-100 Dx Club's profile page</a></small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="webadifrealtime">QO-100 Dx Club Realtime Upload</label> | 
					
						
							|  |  |  | 						<select class="custom-select" id="webadifrealtime" name="webadifrealtime"> | 
					
						
							|  |  |  | 							<option value="1" <?php if ($my_station_profile->webadifrealtime == 1) { echo " selected =\"selected\""; } ?>>Yes</option>
 | 
					
						
							|  |  |  | 							<option value="0" <?php if ($my_station_profile->webadifrealtime == 0) { echo " selected =\"selected\""; } ?>>No</option>
 | 
					
						
							|  |  |  | 						</select> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2022-11-16 01:29:33 +08:00
										 |  |  | 	<div class="row"> | 
					
						
							|  |  |  | 		<div class="col-md"> | 
					
						
							|  |  |  | 			<div class="card"> | 
					
						
							|  |  |  | 				<h5 class="card-header">OQRS</h5> | 
					
						
							|  |  |  | 				<div class="card-body"> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="oqrs">OQRS Enabled</label> | 
					
						
							|  |  |  | 						<select class="custom-select" id="oqrs" name="oqrs"> | 
					
						
							|  |  |  | 							<option value="1" <?php if ($my_station_profile->oqrs == 1) { echo " selected =\"selected\""; } ?>>Yes</option>
 | 
					
						
							|  |  |  | 							<option value="0" <?php if ($my_station_profile->oqrs == 0) { echo " selected =\"selected\""; } ?>>No</option>
 | 
					
						
							|  |  |  | 						</select> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="oqrs">OQRS Email alert</label> | 
					
						
							|  |  |  | 						<select class="custom-select" id="oqrsemail" name="oqrsemail"> | 
					
						
							|  |  |  | 							<option value="1" <?php if ($my_station_profile->oqrs_email == 1) { echo " selected =\"selected\""; } ?>>Yes</option>
 | 
					
						
							|  |  |  | 							<option value="0" <?php if ($my_station_profile->oqrs_email == 0) { echo " selected =\"selected\""; } ?>>No</option>
 | 
					
						
							|  |  |  | 						</select> | 
					
						
							|  |  |  | 						<small id="oqrsemailHelp" class="form-text text-muted">Make sure email is set up under admin and global options.</small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<div class="form-group"> | 
					
						
							|  |  |  | 						<label for="oqrstext">OQRS Text</label> | 
					
						
							|  |  |  | 						<input type="text" class="form-control" name="oqrstext" id="oqrstext" aria-describedby="oqrstextHelp" value="<?php if(set_value('oqrs_text') != "") { echo set_value('oqrs_text'); } else { echo $my_station_profile->oqrs_text; } ?>"> | 
					
						
							|  |  |  | 						<small id="oqrstextHelp" class="form-text text-muted">Some info you want to add regarding QSL'ing.</small> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 14:16:44 +08:00
										 |  |  | 	<button type="submit" class="btn btn-primary"><i class="fas fa-plus-square"></i> <?php echo $form_action; ?> Station Location</button>
 | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 01:58:54 +08:00
										 |  |  | 	</form> | 
					
						
							| 
									
										
										
										
											2019-10-04 05:18:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-09 06:27:16 +08:00
										 |  |  | </div> |