Esempio n. 1
0
					<th>User Password</th>
					<td><?php 
echo form_password('user_password');
?>
</td>
				</tr>

				<tr class="ui-helper-reset">
					<th>Confirm Password</th>
					<td><?php 
echo form_password('con_password');
?>
</td>
				</tr>
				<?php 
echo display_user_settings();
?>
				<tr class="ui-helper-reset">
					<th>Status</th>
					<td><?php 
echo form_dropdown('user_status', array('active' => 'Active', 'inactive' => 'Inactive'));
?>
</td>
				</tr>

				<tr class="ui-helper-reset">
					<th>Manager</th>
					<td><?php 
echo form_dropdown('user_manager', $users);
?>
</td>
Esempio n. 2
0
					<th>User Password</th>
					<td><?php 
echo form_password('user_password');
?>
</td>
				</tr>

				<tr class="ui-helper-reset">
					<th>Confirm Password</th>
					<td><?php 
echo form_password('con_password');
?>
</td>
				</tr>
				<?php 
echo display_user_settings(true, $user);
?>
				<tr class="ui-helper-reset">
					<th>Status</th>
					<td><?php 
echo form_dropdown('user_status', array('active' => 'Active', 'inactive' => 'Inactive'), $user->user_status);
?>
</td>
				</tr>

				<tr class="ui-helper-reset">
					<th>Manager</th>
					<td><?php 
echo form_dropdown('user_manager', $users, $user->user_manager);
?>
</td>