| 
									
										
										
										
											2011-11-07 07:09:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | <div class="container"> | 
					
						
							| 
									
										
										
										
											2011-11-07 07:09:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | <br> | 
					
						
							| 
									
										
										
										
											2011-08-20 00:12:59 +08:00
										 |  |  | <?php if($this->session->flashdata('notice')) { ?>
 | 
					
						
							|  |  |  |     <div id="message" > | 
					
						
							|  |  |  |         <?php echo $this->session->flashdata('notice'); ?>
 | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | <?php } ?>
 | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <div class="card"> | 
					
						
							|  |  |  |   <div class="card-header">Create User Account</div> | 
					
						
							|  |  |  |   <div class="card-body"> | 
					
						
							|  |  |  |     <h5 class="card-title"></h5> | 
					
						
							|  |  |  |     <p class="card-text"></p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <?php $this->load->helper('form'); ?>
 | 
					
						
							|  |  |  |     <?php echo validation_errors(); ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <form method="post" action="<?php echo site_url('user/add'); ?>" name="users"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label>Username</label> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		    <input class="form-control" type="text" name="user_name" value="<?php if(isset($user_name)) { echo $user_name; } ?>" /> | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 			<?php if(isset($username_error)) { echo "<div class=\"small error\">".$username_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label>User Role</label> | 
					
						
							| 
									
										
										
										
											2020-09-16 16:17:58 +08:00
										 |  |  | 		    <select class="custom-select" name="user_type"> | 
					
						
							| 
									
										
										
										
											2021-02-26 17:37:43 +08:00
										 |  |  | 			<?php | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 				$levels = $this->config->item('auth_level'); | 
					
						
							| 
									
										
										
										
											2021-10-09 21:25:10 +08:00
										 |  |  | 				foreach ($levels as $key => $value) { | 
					
						
							|  |  |  | 					echo '<option value="'. $key . '"'; | 
					
						
							|  |  |  | 					if(isset($user_type)) {  | 
					
						
							|  |  |  | 						if($user_type == $key) {  | 
					
						
							|  |  |  | 							echo "selected=\"selected\"";  | 
					
						
							|  |  |  | 						}  | 
					
						
							|  |  |  | 					}  | 
					
						
							|  |  |  | 					echo '>' . $value . '</option>'; | 
					
						
							|  |  |  | 				}  | 
					
						
							|  |  |  | 				?>
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 			</select> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		  </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label>Email Address</label> | 
					
						
							|  |  |  | 			<input class="form-control" type="text" name="user_email" value="<?php if(isset($user_email)) { echo $user_email; } ?>" /> | 
					
						
							|  |  |  | 			<?php if(isset($email_error)) { echo "<div class=\"small error\">".$email_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label>Password</label> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		    <input class="form-control" type="password" name="user_password" value="<?php if(isset($user_password)) { echo $user_password; } ?>" /> | 
					
						
							|  |  |  | 				<?php if(isset($password_error)) { echo "<div class=\"small error\">".$password_error."</div>"; } ?>
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label>First Name</label> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		    <input class="form-control" type="text" name="user_firstname" value="<?php if(isset($user_firstname)) { echo $user_firstname; } ?>" /> | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 			<?php if(isset($firstname_error)) { echo "<div class=\"small error\">".$firstname_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		    <label>Last Name</label> | 
					
						
							|  |  |  | 		    <input class="form-control" type="text" name="user_lastname" value="<?php if(isset($user_lastname)) { echo $user_lastname; } ?>" /> | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 			<?php if(isset($lastname_error)) { echo "<div class=\"small error\">".$lastname_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		    <label>Callsign</label> | 
					
						
							|  |  |  | 		    <input class="form-control" type="text" name="user_callsign" value="<?php if(isset($user_callsign)) { echo $user_callsign; } ?>" /> | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 			<?php if(isset($callsign_error)) { echo "<div class=\"small error\">".$callsign_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2021-02-26 17:37:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							| 
									
										
										
										
											2021-12-25 06:12:41 +08:00
										 |  |  | 		    <label>Gridsquare</label> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		    <input class="form-control" type="text" name="user_locator" value="<?php if(isset($user_locator)) { echo $user_locator; } ?>" /> | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 			<?php if(isset($locator_error)) { echo "<div class=\"small error\">".$locator_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  | 		    <label>Timezone</label> | 
					
						
							| 
									
										
										
										
											2021-02-26 17:37:43 +08:00
										 |  |  | 			<?php | 
					
						
							| 
									
										
										
										
											2020-06-03 04:21:22 +08:00
										 |  |  | 				if(!isset($user_timezone)) { $user_timezone = 0; } | 
					
						
							| 
									
										
										
										
											2021-02-26 17:37:43 +08:00
										 |  |  | 				echo form_dropdown('user_timezone', $timezones, $user_timezone); | 
					
						
							| 
									
										
										
										
											2020-06-03 04:21:22 +08:00
										 |  |  | 			?>
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  |         	<label for="SelectDateFormat">Date Format</label> | 
					
						
							|  |  |  |             <select name="user_date_format" class="custom-select" id="SelectDateFormat" aria-describedby="SelectDateFormatHelp"> | 
					
						
							| 
									
										
										
										
											2020-09-17 04:02:00 +08:00
										 |  |  |             	<option value="">Select Format</option> | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  |             	<option value="d/m/y"><?php echo date('d/m/y'); ?></option>
 | 
					
						
							|  |  |  |             	<option value="d/m/Y"><?php echo date('d/m/Y'); ?></option>
 | 
					
						
							|  |  |  |             	<option value="m/d/y"><?php echo date('m/d/y'); ?></option>
 | 
					
						
							|  |  |  |             	<option value="m/d/Y"><?php echo date('m/d/Y'); ?></option>
 | 
					
						
							|  |  |  |             	<option value="d.m.Y"><?php echo date('d.m.Y'); ?></option>
 | 
					
						
							|  |  |  |             	<option value="Y-m-d"><?php echo date('Y-m-d'); ?></option>
 | 
					
						
							|  |  |  |             </select> | 
					
						
							| 
									
										
										
										
											2021-02-26 17:37:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  |             <small id="SelectDateFormatHelp" class="form-text text-muted">Select how you would like dates shown when logged into your account.</small> | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2020-09-17 03:22:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-14 18:29:02 +08:00
										 |  |  |         <div class="form-group"> | 
					
						
							|  |  |  |             <label for="user_measurement_base">Measurement preference</label> | 
					
						
							|  |  |  |             <select class="custom-select" id="user_measurement_base" name="user_measurement_base" required> | 
					
						
							| 
									
										
										
										
											2020-09-17 01:56:29 +08:00
										 |  |  |                 <option value=''></option> | 
					
						
							| 
									
										
										
										
											2020-09-15 17:16:47 +08:00
										 |  |  |                 <option value='K' <?php if($measurement_base == "K") { echo "selected=\"selected\""; } ?>>Kilometers</option>
 | 
					
						
							|  |  |  |                 <option value='M' <?php if($measurement_base == "M") { echo "selected=\"selected\""; } ?>>Miles</option>
 | 
					
						
							|  |  |  |                 <option value='N' <?php if($measurement_base == "N") { echo "selected=\"selected\""; } ?>>Nautical miles</option>
 | 
					
						
							| 
									
										
										
										
											2020-09-14 18:29:02 +08:00
										 |  |  |             </select> | 
					
						
							|  |  |  |             <small id="user_measurement_base_Help" class="form-text text-muted">Choose which unit distances will be shown in.</small> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-23 16:59:49 +08:00
										 |  |  |         <div class="form-group"> | 
					
						
							|  |  |  |             <label for="user_stylesheet">Theme</label> | 
					
						
							|  |  |  |             <select class="custom-select" id="user_stylesheet" name="user_stylesheet" required> | 
					
						
							| 
									
										
										
										
											2021-08-09 19:13:41 +08:00
										 |  |  | 				<?php | 
					
						
							|  |  |  | 				foreach ($themes as $theme) { | 
					
						
							|  |  |  | 					echo '<option value="' . $theme->foldername . '"'; | 
					
						
							|  |  |  | 					if( $theme->foldername == 'default') { | 
					
						
							|  |  |  | 						echo 'selected="selected"'; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					echo '>' . $theme->name . '</option>'; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				?>
 | 
					
						
							| 
									
										
										
										
											2020-09-23 16:59:49 +08:00
										 |  |  |             </select> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-19 20:52:43 +08:00
										 |  |  | 		<div class="form-row"> | 
					
						
							| 
									
										
										
										
											2022-10-19 22:27:26 +08:00
										 |  |  | 			<div class="form-group col-md-4"> | 
					
						
							|  |  |  | 				<label for="qthlookup">Location auto lookup.</label> | 
					
						
							|  |  |  | 				<select class="custom-select" id="qthlookup" name="user_qth_lookup"> | 
					
						
							|  |  |  | 					<option value="0"><?php echo $this->lang->line('general_word_no'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="1"><?php echo $this->lang->line('general_word_yes'); ?></option>
 | 
					
						
							|  |  |  | 				</select> | 
					
						
							|  |  |  | 				<div class="small form-text text-muted">If set, gridsquare is fetched based on location name.</div></td> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<div class="form-group col-md-4"> | 
					
						
							| 
									
										
										
										
											2022-10-19 20:52:43 +08:00
										 |  |  | 				<label for="sotalookup">SOTA auto lookup gridsquare and name for summit.</label> | 
					
						
							|  |  |  | 				<select class="custom-select" id="sotalookup" name="user_sota_lookup"> | 
					
						
							|  |  |  | 					<option value="0"><?php echo $this->lang->line('general_word_no'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="1"><?php echo $this->lang->line('general_word_yes'); ?></option>
 | 
					
						
							|  |  |  | 				</select> | 
					
						
							| 
									
										
										
										
											2022-10-19 22:27:26 +08:00
										 |  |  | 				<div class="small form-text text-muted">If set, name and gridsquare is fetched from the API and filled in location and locator.</div></td> | 
					
						
							| 
									
										
										
										
											2022-10-19 20:52:43 +08:00
										 |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-19 22:27:26 +08:00
										 |  |  | 			<div class="form-group col-md-4"> | 
					
						
							| 
									
										
										
										
											2022-10-19 20:52:43 +08:00
										 |  |  | 				<label for="wwfflookup">WWFF auto lookup gridsquare and name for reference.</label> | 
					
						
							|  |  |  | 				<select class="custom-select" id="wwfflookup" name="user_wwff_lookup"> | 
					
						
							|  |  |  | 					<option value="0"><?php echo $this->lang->line('general_word_no'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="1"><?php echo $this->lang->line('general_word_yes'); ?></option>
 | 
					
						
							|  |  |  | 				</select> | 
					
						
							| 
									
										
										
										
											2022-10-19 22:27:26 +08:00
										 |  |  | 				<div class="small form-text text-muted">If set, name and gridsquare is fetched from the API and filled in location and locator.</div></td> | 
					
						
							| 
									
										
										
										
											2022-10-19 20:52:43 +08:00
										 |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											2021-02-26 17:37:43 +08:00
										 |  |  | 		</div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 04:19:07 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label for="shownotes">Show notes in the main menu.</label> | 
					
						
							|  |  |  | 			<select class="custom-select" id="shownotes" name="user_show_notes"> | 
					
						
							|  |  |  | 				<option value="0"><?php echo $this->lang->line('general_word_no'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="1"><?php echo $this->lang->line('general_word_yes'); ?></option>
 | 
					
						
							|  |  |  | 			</select> | 
					
						
							|  |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 		<div class="form-row"> | 
					
						
							|  |  |  | 			<div class="form-group col-md-3"> | 
					
						
							| 
									
										
										
										
											2021-05-06 18:58:55 +08:00
										 |  |  | 			<label for="column1"><?php echo $this->lang->line('account_column1_text'); ?></label>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			<select class="custom-select" id="column1" name="user_column1"> | 
					
						
							|  |  |  | 				<option value="Band"> <?php echo $this->lang->line('gen_hamradio_band'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2022-12-14 19:45:32 +08:00
										 |  |  | 				<option value="Frequency"> <?php echo $this->lang->line('gen_hamradio_frequency'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Mode" selected ='selected'> <?php echo $this->lang->line('gen_hamradio_mode'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="RSTS"><?php echo $this->lang->line('gen_hamradio_rsts'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="RSTR"><?php echo $this->lang->line('gen_hamradio_rstr'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Country"><?php echo $this->lang->line('general_word_country'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="IOTA"><?php echo $this->lang->line('gen_hamradio_iota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-09-10 00:57:38 +08:00
										 |  |  | 				<option value="SOTA"><?php echo $this->lang->line('gen_hamradio_sota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="State"><?php echo $this->lang->line('gen_hamradio_state'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="Grid"><?php echo $this->lang->line('gen_hamradio_gridsquare'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-11-01 22:22:26 +08:00
										 |  |  | 				<option value="Operator"><?php echo $this->lang->line('gen_hamradio_operator'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			</select> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<div class="form-group col-md-3"> | 
					
						
							| 
									
										
										
										
											2021-05-06 18:58:55 +08:00
										 |  |  | 			<label for="column2"><?php echo $this->lang->line('account_column2_text'); ?></label>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			<select class="custom-select" id="column2" name="user_column2"> | 
					
						
							|  |  |  | 				<option value="Band"> <?php echo $this->lang->line('gen_hamradio_band'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2022-12-14 19:45:32 +08:00
										 |  |  | 				<option value="Frequency"> <?php echo $this->lang->line('gen_hamradio_frequency'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Mode"> <?php echo $this->lang->line('gen_hamradio_mode'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="RSTS" selected ='selected'><?php echo $this->lang->line('gen_hamradio_rsts'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="RSTR"><?php echo $this->lang->line('gen_hamradio_rstr'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Country"><?php echo $this->lang->line('general_word_country'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="IOTA"><?php echo $this->lang->line('gen_hamradio_iota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-09-10 00:57:38 +08:00
										 |  |  | 				<option value="SOTA"><?php echo $this->lang->line('gen_hamradio_sota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="State"><?php echo $this->lang->line('gen_hamradio_state'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="Grid"><?php echo $this->lang->line('gen_hamradio_gridsquare'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-11-01 22:22:26 +08:00
										 |  |  | 				<option value="Operator"><?php echo $this->lang->line('gen_hamradio_operator'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			</select> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<div class="form-group col-md-3"> | 
					
						
							| 
									
										
										
										
											2021-05-06 18:58:55 +08:00
										 |  |  | 			<label for="column3"><?php echo $this->lang->line('account_column3_text'); ?></label>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			<select class="custom-select" id="column3" name="user_column3"> | 
					
						
							|  |  |  | 				<option value="Band"> <?php echo $this->lang->line('gen_hamradio_band'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2022-12-14 19:45:32 +08:00
										 |  |  | 				<option value="Frequency"> <?php echo $this->lang->line('gen_hamradio_frequency'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Mode"> <?php echo $this->lang->line('gen_hamradio_mode'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="RSTS"><?php echo $this->lang->line('gen_hamradio_rsts'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="RSTR" selected ='selected'><?php echo $this->lang->line('gen_hamradio_rstr'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Country"><?php echo $this->lang->line('general_word_country'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="IOTA"><?php echo $this->lang->line('gen_hamradio_iota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-09-10 00:57:38 +08:00
										 |  |  | 				<option value="SOTA"><?php echo $this->lang->line('gen_hamradio_sota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="State"><?php echo $this->lang->line('gen_hamradio_state'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="Grid"><?php echo $this->lang->line('gen_hamradio_gridsquare'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-11-01 22:22:26 +08:00
										 |  |  | 				<option value="Operator"><?php echo $this->lang->line('gen_hamradio_operator'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			</select> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<div class="form-group col-md-3"> | 
					
						
							| 
									
										
										
										
											2021-05-06 18:58:55 +08:00
										 |  |  | 			<label for="column4"><?php echo $this->lang->line('account_column4_text'); ?></label>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			<select class="custom-select" id="column4" name="user_column4"> | 
					
						
							|  |  |  | 				<option value="Band" selected ='selected'> <?php echo $this->lang->line('gen_hamradio_band'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2022-12-14 19:45:32 +08:00
										 |  |  | 				<option value="Frequency"> <?php echo $this->lang->line('gen_hamradio_frequency'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Mode"> <?php echo $this->lang->line('gen_hamradio_mode'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="RSTS"><?php echo $this->lang->line('gen_hamradio_rsts'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="RSTR"><?php echo $this->lang->line('gen_hamradio_rstr'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 				<option value="Country"><?php echo $this->lang->line('general_word_country'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="IOTA"><?php echo $this->lang->line('gen_hamradio_iota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-09-10 00:57:38 +08:00
										 |  |  | 				<option value="SOTA"><?php echo $this->lang->line('gen_hamradio_sota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-06 18:39:14 +08:00
										 |  |  | 				<option value="State"><?php echo $this->lang->line('gen_hamradio_state'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="Grid"><?php echo $this->lang->line('gen_hamradio_gridsquare'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-11-01 22:22:26 +08:00
										 |  |  | 				<option value="Operator"><?php echo $this->lang->line('gen_hamradio_operator'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 			</select> | 
					
						
							| 
									
										
										
										
											2021-05-07 14:03:25 +08:00
										 |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<div class="form-group col-md-3"> | 
					
						
							|  |  |  | 			<label for="column5"><?php echo $this->lang->line('account_column5_text'); ?></label>
 | 
					
						
							|  |  |  | 				<select class="custom-select" id="column5" name="user_column5"> | 
					
						
							|  |  |  | 					<option value="Band"> <?php echo $this->lang->line('gen_hamradio_band'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2022-12-14 19:45:32 +08:00
										 |  |  | 					<option value="Frequency"> <?php echo $this->lang->line('gen_hamradio_frequency'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-07 14:03:25 +08:00
										 |  |  | 					<option value="Mode"> <?php echo $this->lang->line('gen_hamradio_mode'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="RSTS"><?php echo $this->lang->line('gen_hamradio_rsts'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="RSTR"><?php echo $this->lang->line('gen_hamradio_rstr'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="Country" selected ='selected'><?php echo $this->lang->line('general_word_country'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="IOTA"><?php echo $this->lang->line('gen_hamradio_iota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-09-10 00:57:38 +08:00
										 |  |  | 					<option value="SOTA"><?php echo $this->lang->line('gen_hamradio_sota'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-07 14:03:25 +08:00
										 |  |  | 					<option value="State"><?php echo $this->lang->line('gen_hamradio_state'); ?></option>
 | 
					
						
							|  |  |  | 					<option value="Grid"><?php echo $this->lang->line('gen_hamradio_gridsquare'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-11-01 22:22:26 +08:00
										 |  |  | 					<option value="Operator"><?php echo $this->lang->line('gen_hamradio_operator'); ?></option>
 | 
					
						
							| 
									
										
										
										
											2021-05-07 14:03:25 +08:00
										 |  |  | 				</select> | 
					
						
							|  |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											2021-05-05 23:52:42 +08:00
										 |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2021-03-21 04:19:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-25 07:22:31 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							|  |  |  | 			<label for="previousqsltype">Select the type of QSL to show in the previous QSOs section.</label> | 
					
						
							|  |  |  | 			<select class="custom-select" id="previousqsltype" name="user_previous_qsl_type"> | 
					
						
							|  |  |  | 				<option value="0"><?php echo $this->lang->line('gen_hamradio_qsl'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="1"><?php echo $this->lang->line('lotw_short'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="2"><?php echo $this->lang->line('eqsl_short'); ?></option>
 | 
					
						
							|  |  |  | 			</select> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 19:17:33 +08:00
										 |  |  | 		<div class="form-group"> | 
					
						
							| 
									
										
										
										
											2022-07-03 17:39:05 +08:00
										 |  |  | 			<label for="profileimages">Show profile picture of QSO partner from qrz.com/hamqth.com profile in the log QSO section.</label> | 
					
						
							|  |  |  | 			<select class="custom-select" id="profileimages" name="user_show_profile_image"> | 
					
						
							| 
									
										
										
										
											2022-04-04 19:17:33 +08:00
										 |  |  | 				<option value="0"><?php echo $this->lang->line('general_word_no'); ?></option>
 | 
					
						
							|  |  |  | 				<option value="1"><?php echo $this->lang->line('general_word_yes'); ?></option>
 | 
					
						
							|  |  |  | 			</select> | 
					
						
							| 
									
										
										
										
											2022-07-03 17:39:05 +08:00
										 |  |  | 			<div class="small form-text text-muted">Please set your qrz.com/hamqth.com credentials in the general config file.</div></td> | 
					
						
							| 
									
										
										
										
											2022-04-04 19:17:33 +08:00
										 |  |  | 		</div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 04:00:16 +08:00
										 |  |  | 		<input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" /> | 
					
						
							|  |  |  | 		<button type="submit" class="btn btn-primary">Create Account</button> | 
					
						
							| 
									
										
										
										
											2019-01-09 23:18:46 +08:00
										 |  |  |     </form> | 
					
						
							|  |  |  |   </div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-18 09:27:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 03:22:37 +08:00
										 |  |  | </div> |