| 
									
										
										
										
											2011-11-07 07:09:51 +08:00
										 |  |  | <div id="container"> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | <h2>Edit user</h2> | 
					
						
							| 
									
										
										
										
											2011-11-07 07:09:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | <?php echo validation_errors(); ?>
 | 
					
						
							| 
									
										
										
										
											2011-09-28 06:47:25 +08:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-28 06:47:25 +08:00
										 |  |  | $this->load->helper('form'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | <form method="post" action="<?php echo site_url('user/edit')."/".$this->uri->segment(3); ?>" name="users"> | 
					
						
							|  |  |  | <table> | 
					
						
							|  |  |  | 	<tr> | 
					
						
							|  |  |  | 		<td>Username</td> | 
					
						
							| 
									
										
										
										
											2011-08-20 00:12:59 +08:00
										 |  |  | 		<td><input type="text" name="user_name" value="<?php if(isset($user_name)) { echo $user_name; } ?>" /> | 
					
						
							|  |  |  | 		<?php if(isset($username_error)) { echo "<div class=\"small error\">".$username_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</td> | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | 	</tr> | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-08-20 03:33:37 +08:00
										 |  |  | 	<tr> | 
					
						
							|  |  |  | 		<td>Level</td> | 
					
						
							|  |  |  | 		<td> | 
					
						
							|  |  |  | 		<?php if($this->session->userdata('user_type') == 99) { ?>
 | 
					
						
							|  |  |  | 		<select name="user_type"> | 
					
						
							|  |  |  | 		<?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				$levels = $this->config->item('auth_level'); | 
					
						
							|  |  |  | 				while (list($key, $val) = each($levels)) { | 
					
						
							|  |  |  | 				?>
 | 
					
						
							|  |  |  | 				<option value="<?php echo $key; ?>" <?php if($user_type == $key) { echo "selected=\"selected\""; } ?>><?php echo $val; ?></option>
 | 
					
						
							|  |  |  | 				<?php } ?>
 | 
					
						
							|  |  |  | 		</select> | 
					
						
							|  |  |  | 		<?php } else {  | 
					
						
							|  |  |  | 			$l = $this->config->item('auth_level'); | 
					
						
							|  |  |  | 			echo $l[$user_type]; | 
					
						
							|  |  |  | 		}?>
 | 
					
						
							|  |  |  | 		</td> | 
					
						
							|  |  |  | 	</tr> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | 	<tr> | 
					
						
							|  |  |  | 		<td>E-mail</td> | 
					
						
							| 
									
										
										
										
											2011-08-20 00:12:59 +08:00
										 |  |  | 		<td><input 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>"; } ?>
 | 
					
						
							|  |  |  | 		</td> | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | 	</tr> | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	<tr> | 
					
						
							|  |  |  | 		<td>Password</td> | 
					
						
							| 
									
										
										
										
											2011-08-20 00:12:59 +08:00
										 |  |  | 		<td><input type="password" name="user_password" /> | 
					
						
							|  |  |  | 		<?php if(isset($password_error)) { echo "<div class=\"small error\">".$password_error."</div>"; } else { ?>
 | 
					
						
							|  |  |  | 		<div class="small">Leave blank to keep existing password</div></td> | 
					
						
							|  |  |  | 		<?php } ?>
 | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | 	</tr> | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	<tr> | 
					
						
							| 
									
										
										
										
											2011-09-27 03:45:07 +08:00
										 |  |  | 		<td>First name</td> | 
					
						
							|  |  |  | 		<td><input type="text" name="user_firstname" value="<?php if(isset($user_firstname)) { echo $user_firstname; } ?>" /> | 
					
						
							|  |  |  | 		<?php if(isset($firstname_error)) { echo "<div class=\"small error\">".$firstname_error."</div>"; } else { ?>
 | 
					
						
							| 
									
										
										
										
											2011-08-20 03:33:37 +08:00
										 |  |  | 		<?php } ?>
 | 
					
						
							|  |  |  | 	</tr> | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	<tr> | 
					
						
							| 
									
										
										
										
											2011-09-27 03:45:07 +08:00
										 |  |  | 		<td>Last name</td> | 
					
						
							|  |  |  | 		<td><input type="text" name="user_lastname" value="<?php if(isset($user_lastname)) { echo $user_lastname; } ?>" /> | 
					
						
							|  |  |  | 		<?php if(isset($lastname_error)) { echo "<div class=\"small error\">".$lastname_error."</div>"; } else { ?>
 | 
					
						
							| 
									
										
										
										
											2011-08-20 03:33:37 +08:00
										 |  |  | 		<?php } ?>
 | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | 	</tr> | 
					
						
							| 
									
										
										
										
											2011-08-20 03:33:37 +08:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	<tr> | 
					
						
							| 
									
										
										
										
											2011-09-27 03:45:07 +08:00
										 |  |  | 		<td>Callsign</td> | 
					
						
							|  |  |  | 		<td><input type="text" name="user_callsign" value="<?php if(isset($user_callsign)) { echo $user_callsign; } ?>" /> | 
					
						
							|  |  |  | 		<?php if(isset($callsign_error)) { echo "<div class=\"small error\">".$callsign_error."</div>"; } else { ?>
 | 
					
						
							| 
									
										
										
										
											2011-08-20 03:33:37 +08:00
										 |  |  | 		<?php } ?>
 | 
					
						
							|  |  |  | 	</tr> | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	<tr> | 
					
						
							| 
									
										
										
										
											2011-09-27 03:45:07 +08:00
										 |  |  | 		<td>Locator</td> | 
					
						
							|  |  |  | 		<td><input type="text" name="user_locator" value="<?php if(isset($user_locator)) { echo $user_locator; } ?>" /> | 
					
						
							|  |  |  | 		<?php if(isset($locator_error)) { echo "<div class=\"small error\">".$locator_error."</div>"; } else { ?>
 | 
					
						
							| 
									
										
										
										
											2011-08-20 03:33:37 +08:00
										 |  |  | 		<?php } ?>
 | 
					
						
							|  |  |  | 	</tr> | 
					
						
							| 
									
										
										
										
											2011-09-28 06:47:25 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <tr> | 
					
						
							|  |  |  | 		<td>Timezone</td> | 
					
						
							|  |  |  | 		<td><?php echo form_dropdown('user_timezone', $timezones, $user_timezone); ?></td>
 | 
					
						
							|  |  |  | 	</tr> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-22 08:20:13 +08:00
										 |  |  | 	<tr> | 
					
						
							|  |  |  | 		<td>Logbook of The World (LoTW) Username</td> | 
					
						
							|  |  |  | 		<td><input type="text" name="user_lotw_name" value="<?php if(isset($user_lotw_name)) { echo $user_lotw_name; } ?>" /> | 
					
						
							|  |  |  | 		<?php if(isset($userlotwname_error)) { echo "<div class=\"small error\">".$userlotwname_error."</div>"; } ?>
 | 
					
						
							|  |  |  | 		</td> | 
					
						
							|  |  |  | 	</tr> | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	<tr> | 
					
						
							|  |  |  | 		<td>Logbook of The World (LoTW) Password</td> | 
					
						
							|  |  |  | 		<td><input type="password" name="user_lotw_password" /> | 
					
						
							|  |  |  | 		<?php if(isset($lotwpassword_error)) { echo "<div class=\"small error\">".$lotwpassword_error."</div>"; } else { ?>
 | 
					
						
							|  |  |  | 		<div class="small">Leave blank to keep existing password</div></td> | 
					
						
							|  |  |  | 		<?php } ?>
 | 
					
						
							|  |  |  | 	</tr> | 
					
						
							| 
									
										
										
										
											2011-08-20 03:33:37 +08:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | </table>	 | 
					
						
							|  |  |  | <input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" /> | 
					
						
							| 
									
										
										
										
											2011-11-07 07:09:51 +08:00
										 |  |  | <div class="actions"><input class="btn primary" type="submit" value="Update profile" /></div> | 
					
						
							| 
									
										
										
										
											2011-08-18 08:16:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | </form> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </div> |